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),