Chat mit BUtton für eine Person FERTIG!

This commit is contained in:
Holger Trampe 2020-05-24 10:47:14 +02:00
parent 9b45ac79e5
commit b0def76b82
3 changed files with 2 additions and 3 deletions

View File

@ -45,7 +45,6 @@ REDIS_URL = ("localhost", 6379)
############################################## DEV #####################################
# Nach zehn Stunden läuft der Cookie ab!
SESSION_COOKIE_AGE = 8*60*60

View File

@ -37,8 +37,8 @@ def loadingFreeDays(plz, year):
filecsv = csv.reader(csvfile, delimiter=';')
for row in filecsv:
if str(row[1]) == str(plz):
land = row[6]
if str(row[1].decode('utf-8')) == str(plz):
land = row[6].decode('utf-8')
break;
if(land != False):