jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/480094 )
Change subject: [bugfix] Enable mw timestamp with EventStreams ......................................................................
[bugfix] Enable mw timestamp with EventStreams
Bug: T212133 Change-Id: I04f2e6c5cd260ec46e7fc929f95e3bdfd110e951 --- M pywikibot/comms/eventstreams.py 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Mpaa: Looks good to me, approved jenkins-bot: Verified
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):
pywikibot-commits@lists.wikimedia.org