Indent error

This commit is contained in:
Phyks (Lucas Verney) 2013-12-10 17:38:29 +01:00
parent e4f3e29035
commit 8ad4c28898
1 changed files with 4 additions and 4 deletions

View File

@ -220,10 +220,10 @@ def update():
if r.status == 200:
station_xml = ET.fromstring(r.data)
for child in station_xml.iter('available'):
available[station] = child.text
for child in station_xml.iter('free'):
free[station] = child.text
for child in station_xml.iter('available'):
available[station] = child.text
for child in station_xml.iter('free'):
free[station] = child.text
else:
available[station] = -1