summaryrefslogtreecommitdiff
path: root/bvggrabber/api/actualdeparture.py
diff options
context:
space:
mode:
Diffstat (limited to 'bvggrabber/api/actualdeparture.py')
-rw-r--r--bvggrabber/api/actualdeparture.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bvggrabber/api/actualdeparture.py b/bvggrabber/api/actualdeparture.py
index 93181cc..699e8aa 100644
--- a/bvggrabber/api/actualdeparture.py
+++ b/bvggrabber/api/actualdeparture.py
@@ -44,6 +44,7 @@ class ActualDepartureQueryApi(QueryApi):
tds = row.find_all('td')
dep = Departure(start=self.station,
end=tds[2].text.strip(),
+ when=tds[0].text.strip(),
line=tds[1].text.strip())
departures.append(dep)
return (True, departures)