jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/593593 )
Change subject: [bugfix] Fix regression from I600816e ......................................................................
[bugfix] Fix regression from I600816e
Change-Id: I7086f410618c520915a5056f4c6d4139a4cc3c9a --- M scripts/replace.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: D3r1ck01: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/replace.py b/scripts/replace.py index 03b2edf..b56ce39 100755 --- a/scripts/replace.py +++ b/scripts/replace.py @@ -937,7 +937,7 @@ fixes_set += [arg[5:]] elif arg.startswith('-sleep:'): options['sleep'] = float(arg[7:]) - elif arg in ('-always', '-recursive', -'allowoverlap'): + elif arg in ('-always', '-recursive', '-allowoverlap'): options[arg[1:]] = True elif arg == '-nocase': flags |= re.IGNORECASE
pywikibot-commits@lists.wikimedia.org