jenkins-bot has submitted this change and it was merged.
Change subject: [FIX] Incorrect param usage ......................................................................
[FIX] Incorrect param usage
With 954825e17c5f979c87d51d6bc18347133fb119b2 the params are a list so adding just a string to it will add each character.
Change-Id: I936bded7542bb4dff7435be8cdf77781d3fd99a2 --- M pywikibot/site.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/site.py b/pywikibot/site.py index 8ba6e52..49f50dc 100644 --- a/pywikibot/site.py +++ b/pywikibot/site.py @@ -3305,7 +3305,7 @@ } if showPatrolled is not None and ( self.has_right('patrol') or self.has_right('patrolmarks')): - rcgen.request['rcprop'] += '|patrolled' + rcgen.request['rcprop'] += ['patrolled'] filters['patrolled'] = showPatrolled rcshow = [] for item in filters:
pywikibot-commits@lists.wikimedia.org