From a9f7f0d83d6447c29dc2734bdf31352d4ccef51e Mon Sep 17 00:00:00 2001 From: "Nathaniel A. Frissell" Date: Thu, 25 Sep 2014 16:12:25 -0400 Subject: [PATCH] fixes #2 callsign case sensitivity bug --- hamtools/qrz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hamtools/qrz.py b/hamtools/qrz.py index b309bab..5066405 100755 --- a/hamtools/qrz.py +++ b/hamtools/qrz.py @@ -138,7 +138,7 @@ class Session(object): self.db.commit(); callnode = dom.getElementsByTagName("Callsign")[0] data = Callsign(callnode) - if data['call'] != callsign: + if data['call'].lower() != callsign.lower(): raise Exception("qrz callsign mismatch") return data except Exception: