Updated server.py to pull DB_PWD from thisrun.

This commit is contained in:
CaiusX
2022-02-07 11:57:36 +02:00
parent 35aca795de
commit de31dcd608
+2 -2
View File
@@ -41,8 +41,8 @@ server.bind(ADDR)
# Open most recent Configuration and grab DB_PWD as a python variable
with open('/home/pi/BirdNET-Pi/thisrun.txt', 'r') as f:
this_run = f.readlines()
db_pwd = str(str(str([i for i in this_run if i.startswith('DB_PWD')]).split('=')[1]).split('\\')[0])
this_run = f.readlines()
db_pwd = str(str(str([i for i in this_run if i.startswith('DB_PWD')]).split('=')[1]).split('\\')[0])
def loadModel():