From df08cefe257c48ce3ea107a6b5d5fcb80d1761ea Mon Sep 17 00:00:00 2001 From: classabbyamp <5366828+classabbyamp@users.noreply.github.com> Date: Sun, 29 Jan 2023 07:50:35 -0500 Subject: [PATCH] exts/callsign: fix mail qsl display --- exts/callsign.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exts/callsign.py b/exts/callsign.py index aefb330..efb5ae8 100644 --- a/exts/callsign.py +++ b/exts/callsign.py @@ -101,7 +101,7 @@ def qrz_process_info(data: CallsignData) -> Dict: if data.qsl is not None: qsl = { "eQSL?": data.qsl.eqsl, - "Paper QSL?": data.qsl, + "Paper QSL?": data.qsl.mail, "LotW?": data.qsl.lotw, "QSL Info": data.qsl.info, }