fix errant ')'

This commit is contained in:
Eric D. Brown 2021-03-27 11:54:41 -06:00
parent b1fc7efb90
commit 0fea87d766

View file

@ -108,7 +108,7 @@ urllib.request.install_opener(http)
def reconnect(): def reconnect():
global AIS global AIS
while True: while True:
AIS = aprslib.IS(conf['APRS']['SSID'],passwd=int(conf['APRS']['Password']),port=int(conf['APRS']['Port']))) AIS = aprslib.IS(conf['APRS']['SSID'],passwd=int(conf['APRS']['Password']),port=int(conf['APRS']['Port']))
try: try:
AIS.connect() AIS.connect()
break break