summaryrefslogtreecommitdiff
path: root/bvggrabber/api/scheduleddeparture.py
diff options
context:
space:
mode:
Diffstat (limited to 'bvggrabber/api/scheduleddeparture.py')
-rw-r--r--bvggrabber/api/scheduleddeparture.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bvggrabber/api/scheduleddeparture.py b/bvggrabber/api/scheduleddeparture.py
index f316b6e..101f692 100644
--- a/bvggrabber/api/scheduleddeparture.py
+++ b/bvggrabber/api/scheduleddeparture.py
@@ -70,10 +70,11 @@ class ScheduledDepartureQueryApi(QueryApi):
departures = []
for row in rows:
tds = row.find_all('td')
+ stro = row.find_all('strong')
dep = Departure(start=self.station,
end=tds[2].text.strip(),
when=tds[0].text.strip(),
- line=tds[1].text.strip())
+ line=stro[1].text.strip())
departures.append(dep)
return Response(True, self.station, departures)
else: