fix typo in wlan-autoreconnect script

This commit is contained in:
Franzi 2019-08-01 21:50:50 +02:00
parent 5797899e8f
commit b10615d7a5
Signed by untrusted user: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -92,7 +92,7 @@ while True:
if r.status_code == 200:
log.info('Logged in to WIFIonICE')
else:
log.warning('Logging in failed, got status code ' + str(r,status_code))
log.warning('Logging in failed, got status code ' + str(r.status_code))
except requests.exceptions.ConnectTimeout:
log.error('Timeout while trying to login, visit http://www.wifionice.de/ to check')
except: