diff options
Diffstat (limited to 'bvggrabber')
-rw-r--r-- | bvggrabber/api/actualdeparture.py | 1 |
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) |