Xqt submitted this change.

View Change

Approvals: Xqt: Verified; Looks good to me, approved
[bugfix] Fix -format option

Change-Id: I6e5277df9d694cdabc489b91355d2d49a1f765ac
---
M scripts/listpages.py
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/listpages.py b/scripts/listpages.py
index f206e25..d812ffd 100755
--- a/scripts/listpages.py
+++ b/scripts/listpages.py
@@ -194,7 +194,9 @@
if option == '-notitle':
notitle = True
elif option == '-format':
- if '\\03{{' in value:
+ if '\\03{{' not in value:
+ fmt = value
+ else:
fmt = value.replace('\\03{{', '\03{{')
issue_deprecation_warning(
'old color format variant like \03{color}',

To view, visit change 791371. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I6e5277df9d694cdabc489b91355d2d49a1f765ac
Gerrit-Change-Number: 791371
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-MessageType: merged