diff options
| author | 2017-03-26 14:13:50 +0100 | |
|---|---|---|
| committer | 2017-03-26 14:13:50 +0100 | |
| commit | 9f04faaa9094c454245d3264171b3758870c11cd (patch) | |
| tree | 986b89caf541c38e488888e6c456cd5554b9955f /modules | |
| parent | NR: Clocks go back tonight. Make UTC explicit in nrtrains call (diff) | |
| signature | ||
NR: Turns out arrivals/departure doesn't actually respect UTC indication
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/nr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nr.py b/modules/nr.py index 91bf3f83..95fca02b 100644 --- a/modules/nr.py +++ b/modules/nr.py @@ -134,7 +134,7 @@ class Module(object): method = client.service.GetArrivalDepartureBoardByCRS if len(location_code) == 3 else client.service.GetArrivalDepartureBoardByTIPLOC try: - query = method(100, location_code, datetime.now().isoformat().split(".")[0] + "Z", filter["period"], + query = method(100, location_code, datetime.now().isoformat().split(".")[0], filter["period"], nr_filterlist, "to", '', "PBS", False) except WebFault as detail: if str(detail) == "Server raised fault: 'Invalid crs code supplied'": |
