jenkins-bot has submitted this change and it was merged.
Change subject: tools.py: typo in DotReadableDict.repr() ......................................................................
tools.py: typo in DotReadableDict.repr()
self.__dict__ and not self.__dict___
Change-Id: I00cd0679e84e4daaec7a6cf34c641dcf8c0eaa91 --- M pywikibot/tools.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/tools.py b/pywikibot/tools.py index cb19499..2cb16ee 100644 --- a/pywikibot/tools.py +++ b/pywikibot/tools.py @@ -167,7 +167,7 @@
def __repr__(self): """Return a more complete string representation.""" - return repr(self.__dict___) + return repr(self.__dict__)
def concat_options(message, line_length, options):
pywikibot-commits@lists.wikimedia.org