From 0fea87d76672a9421150a52d64f171c16b88c731 Mon Sep 17 00:00:00 2001 From: "Eric D. Brown" Date: Sat, 27 Mar 2021 11:54:41 -0600 Subject: [PATCH] fix errant ')' --- ir-aprsisd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir-aprsisd b/ir-aprsisd index 56c8544..7d433af 100755 --- a/ir-aprsisd +++ b/ir-aprsisd @@ -108,7 +108,7 @@ urllib.request.install_opener(http) def reconnect(): global AIS 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: AIS.connect() break