From 60a26bb2fa4715697c83b734fe6f08251e7c17fd Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Sat, 24 Jun 2017 18:04:21 +0100 Subject: [PATCH] Comment update. --- pyqso/record_dialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyqso/record_dialog.py b/pyqso/record_dialog.py index c21aa5f..a91917f 100644 --- a/pyqso/record_dialog.py +++ b/pyqso/record_dialog.py @@ -395,7 +395,7 @@ class RecordDialog: # QRZ.com callsign_lookup = CallsignLookupQRZ(parent=self.dialog) elif(database == "hamqth.com"): - # HamQTH + # HamQTH.com callsign_lookup = CallsignLookupHamQTH(parent=self.dialog) else: raise ValueError("Unknown callsign database: %s" % database) @@ -418,7 +418,7 @@ class RecordDialog: error(parent=self.dialog, message="To perform a callsign lookup, please specify your username and password in the Preferences.") return - # Connect and look up + # Connect and look up. connected = callsign_lookup.connect(username, password) if(connected): full_callsign = self.sources["CALL"].get_text()