Chat mit BUtton für eine Person FERTIG!
This commit is contained in:
parent
9b45ac79e5
commit
b0def76b82
Binary file not shown.
|
|
@ -45,7 +45,6 @@ REDIS_URL = ("localhost", 6379)
|
|||
############################################## DEV #####################################
|
||||
|
||||
|
||||
|
||||
# Nach zehn Stunden läuft der Cookie ab!
|
||||
SESSION_COOKIE_AGE = 8*60*60
|
||||
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue