<type 'exceptions.TypeError'> | Python 2.7.18: /usr/bin/python Sun Nov 10 20:48:48 2024 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/home/bfrvhfc/public_html/cgi-bin/LOGS2020/logcheck2020jul.py in <module>() |
1476 html_header() |
1477 |
=> 1478 if contest() == False: |
1479 select_contest() |
1480 |
contest = <function contest>, builtin False = False |
/home/bfrvhfc/public_html/cgi-bin/LOGS2020/logcheck2020jul.py in contest() |
1393 after_deadline = True |
1394 if after_deadline: |
=> 1395 list_callsign(callsigns, "checked",with_header) |
1396 with_header = False |
1397 list_callsign(callsigns, "claimed", with_header) |
global list_callsign = <function list_callsign>, callsigns = (('9A1IST', '144'),), with_header = True |
/home/bfrvhfc/public_html/cgi-bin/LOGS2020/logcheck2020jul.py in list_callsign(callsigns=(('9A1IST', '144'),), claimed='checked', with_header=True) |
909 cursor.execute(query) |
910 result = cursor.fetchone() |
=> 911 stroke, home = result |
912 full_call = callsign |
913 if stroke!="": full_call="%s/%s" %(callsign, stroke) |
stroke undefined, home undefined, result = None |
<type 'exceptions.TypeError'>: 'NoneType' object is not iterable
args =
("'NoneType' object is not iterable",)
message =
"'NoneType' object is not iterable"