diff options
| author | 2017-03-25 18:21:39 +0000 | |
|---|---|---|
| committer | 2017-03-25 18:21:39 +0000 | |
| commit | 67d7a20c5ca683ec3d10d9d1b061ccf3f9c81082 (patch) | |
| tree | 100ac201457f39ac6572017bb14c7ba20ba11feb | |
| parent | Attribute quote to topiary (diff) | |
| signature | ||
NR: Clocks go back tonight. Make UTC explicit in nrtrains call
| -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 95fca02b..91bf3f83 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], filter["period"], + query = method(100, location_code, datetime.now().isoformat().split(".")[0] + "Z", filter["period"], nr_filterlist, "to", '', "PBS", False) except WebFault as detail: if str(detail) == "Server raised fault: 'Invalid crs code supplied'": |
