Updated some comments.

pull/17/head
Christian Jacobs 2014-03-27 10:12:58 +00:00
rodzic 6dada62d28
commit 2977dad8ab
2 zmienionych plików z 3 dodań i 5 usunięć

Wyświetl plik

@ -67,7 +67,7 @@ class CallsignLookup():
and return the data in the dictionary called fields_and_data. """
logging.debug("Performing a callsign lookup...")
# Remove any prefix or suffix from the callsign.
# Remove any prefix or suffix from the callsign before performing the lookup.
logging.debug("Looking up callsign. The full callsign (with a prefix and/or suffix) is %s" % full_callsign)
components = full_callsign.split("/") # We assume that prefixes or suffixes come before/after a forward slash character "/".
suffixes = ["P", "M", "A", "PM", "MM", "AM", "QRP"]
@ -100,8 +100,8 @@ class CallsignLookup():
raise ValueError
except ValueError:
callsign = full_callsign
# Commence lookup.
fields_and_data = {"NAME":"", "ADDRESS":"", "STATE":"", "COUNTRY":"", "DXCC":"", "CQZ":"", "ITUZ":"", "IOTA":""}
if(self.session_key):
request = '/xml/current/?s=%s;callsign=%s' % (self.session_key, callsign)

Wyświetl plik

@ -488,8 +488,6 @@ class RecordDialog(Gtk.Dialog):
connected = callsign_lookup.connect(username, password)
if(connected):
full_callsign = self.sources["CALL"].get_text()
# Commence lookup.
fields_and_data = callsign_lookup.lookup(full_callsign)
for field_name in fields_and_data.keys():
self.sources[field_name].set_text(fields_and_data[field_name])