This commit is contained in:
holger.trampe 2020-05-27 23:03:00 +01:00
parent a3ddba9ac0
commit c35e6365ff
9 changed files with 66 additions and 66 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 0 B

View File

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