From 5e33a6aca6c0f3e1180216fdaf58f5f9ad8768d5 Mon Sep 17 00:00:00 2001 From: Abigail Gold Date: Sat, 4 Jan 2020 17:14:41 -0500 Subject: [PATCH] add trustee field to qrz Fixes #154 --- CHANGELOG.md | 2 ++ exts/qrz.py | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12940b8..e8648c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Added +- Added Trustee field to qrz command for club callsigns. ### Changed - Changelog command to accept a version as argument. - The qrz command can now link to a QRZ page instead of embedding the data with the `--link` flag. diff --git a/exts/qrz.py b/exts/qrz.py index c2576c4..5cc94b8 100644 --- a/exts/qrz.py +++ b/exts/qrz.py @@ -167,6 +167,7 @@ def qrz_process_info(data: dict): ('Aliases', data.get('aliases', None)), ('Previous Callsign', data.get('p_call', None)), ('License Class', data.get('class', None)), + ('Trustee', data.get('trustee', None)), ('eQSL?', eqsl), ('Paper QSL?', mqsl), ('LotW?', lotw),