jenkins-bot merged this change.

View Change

Approvals: Framawiki: Looks good to me, approved jenkins-bot: Verified
[IMPR] Print the uri in error_handling_callback

- Print the called uri in error_handling_callback when the request
fails with an exception.
- remove print_function import which is not in this module

Change-Id: If5a7d8b3db1c442212367fcdb75fd2824826885f
---
M pywikibot/comms/http.py
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pywikibot/comms/http.py b/pywikibot/comms/http.py
index fc1a990..fb11106 100644
--- a/pywikibot/comms/http.py
+++ b/pywikibot/comms/http.py
@@ -16,8 +16,7 @@
#
# Distributed under the terms of the MIT license.
#
-from __future__ import (absolute_import, division,
- print_function, unicode_literals)
+from __future__ import absolute_import, division, unicode_literals


__docformat__ = 'epytext'
@@ -409,6 +408,7 @@

# if all else fails
if isinstance(request.data, Exception):
+ error('An error occurred for uri ' + request.uri)
raise request.data

if request.status == 504:

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

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: If5a7d8b3db1c442212367fcdb75fd2824826885f
Gerrit-Change-Number: 505636
Gerrit-PatchSet: 2
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Framawiki <framawiki@tools.wmflabs.org>
Gerrit-Reviewer: John Vandenberg <jayvdb@gmail.com>
Gerrit-Reviewer: jenkins-bot (75)