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 #####################################
|
############################################## DEV #####################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Nach zehn Stunden läuft der Cookie ab!
|
# Nach zehn Stunden läuft der Cookie ab!
|
||||||
SESSION_COOKIE_AGE = 8*60*60
|
SESSION_COOKIE_AGE = 8*60*60
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,8 +37,8 @@ def loadingFreeDays(plz, year):
|
||||||
filecsv = csv.reader(csvfile, delimiter=';')
|
filecsv = csv.reader(csvfile, delimiter=';')
|
||||||
for row in filecsv:
|
for row in filecsv:
|
||||||
|
|
||||||
if str(row[1]) == str(plz):
|
if str(row[1].decode('utf-8')) == str(plz):
|
||||||
land = row[6]
|
land = row[6].decode('utf-8')
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if(land != False):
|
if(land != False):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue