From 8ad4c288989e5f4f37b63a9318d8ecda09d1e446 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Tue, 10 Dec 2013 17:38:29 +0100 Subject: [PATCH] Indent error --- pivelib.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pivelib.py b/pivelib.py index 4cf4fb1..0e78958 100755 --- a/pivelib.py +++ b/pivelib.py @@ -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