jenkins-bot merged this change.
[bugfix] Enable mw timestamp with EventStreams
Bug: T212133
Change-Id: I04f2e6c5cd260ec46e7fc929f95e3bdfd110e951
---
M pywikibot/comms/eventstreams.py
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pywikibot/comms/eventstreams.py b/pywikibot/comms/eventstreams.py
index cb8aaee..5863579 100644
--- a/pywikibot/comms/eventstreams.py
+++ b/pywikibot/comms/eventstreams.py
@@ -157,8 +157,8 @@
.format(host=self._site.eventstreams_host(),
path=self._site.eventstreams_path(),
streams=self._streams,
- since=('?since=' + self._since)
- if self._since else ''))
+ since=('?since=%s' % self._since
+ if self._since else '')))
return self._url
def set_maximum_items(self, value):
To view, visit change 480094. To unsubscribe, or for help writing mail filters, visit settings.