[issue35036] logger failure in suspicious.py

2019-10-07 Thread miss-islington
miss-islington added the comment: New changeset e78d79c15cc53bdf8161d41c627cbfb551d8ee96 by Miss Islington (bot) in branch '2.7': bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024) https://github.com/python/cpython/commit/e78d79c15cc53bdf8161d41c627cbfb551d8ee96

[issue35036] logger failure in suspicious.py

2019-10-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +16222 pull_request: https://github.com/python/cpython/pull/16637 ___ Python tracker ___

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks @xtreak for the catch and PR! -- ___ Python tracker ___ ___ Python-bugs-list

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset c3f52a59ce8406d9e59253ad4621e4749abdaeef by Pablo Galindo (Xtreak) in branch 'master': bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024)

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Caleb Hattingh
Change by Caleb Hattingh : -- nosy: +cjrh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- keywords: +patch pull_requests: +9363 stage: -> patch review ___ Python tracker ___ ___

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- assignee: -> xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35036] logger failure in suspicious.py

2018-10-21 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : There were some recent changes made in ee171a26c11 to fix Sphinx related deprecation warnings. During the change self.info() was changed to self.logger.info() . Logger expects a positional argument that contains the message thus causing failure.