Merge pull request #92 from makrsmark/opens-pwd-fix
don't uppercase password
This commit is contained in:
commit
d04065dbba
|
@ -4,7 +4,9 @@ def pull_opensky(planes):
|
|||
main_config.read('./configs/mainconf.ini')
|
||||
from opensky_api import OpenSkyApi
|
||||
planeData = None
|
||||
opens_api = OpenSkyApi(username= None if main_config.get('OPENSKY', 'USERNAME').upper() == "NONE" else main_config.get('OPENSKY', 'USERNAME'), password= None if main_config.get('OPENSKY', 'PASSWORD').upper() == "NONE" else main_config.get('OPENSKY', 'PASSWORD').upper())
|
||||
opens_api = OpenSkyApi(
|
||||
username= None if main_config.get('OPENSKY', 'USERNAME').upper() == "NONE" else main_config.get('OPENSKY', 'USERNAME'),
|
||||
password= None if main_config.get('OPENSKY', 'PASSWORD').upper() == "NONE" else main_config.get('OPENSKY', 'PASSWORD'))
|
||||
failed = False
|
||||
icao_array = []
|
||||
for key in planes.keys():
|
||||
|
|
Loading…
Reference in New Issue