mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-26 18:06:13 +01:00
Fix condition for using urllib2 workaround
See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=762825
This commit is contained in:
parent
603cf3b713
commit
2f14cedcff
@ -450,7 +450,7 @@ def _build_opener(url):
|
|||||||
|
|
||||||
# workaround for http://bugs.python.org/issue9639
|
# workaround for http://bugs.python.org/issue9639
|
||||||
authhandler_class = HTTPBasicAuthHandler
|
authhandler_class = HTTPBasicAuthHandler
|
||||||
if sys.version_info >= (2, 6, 6) and sys.version_info < (2, 7, 1) \
|
if sys.version_info >= (2, 6, 6) and sys.version_info < (2, 7, 99) \
|
||||||
and not 'reset_retry_count' in dir(HTTPBasicAuthHandler):
|
and not 'reset_retry_count' in dir(HTTPBasicAuthHandler):
|
||||||
print('warning: your urllib2 version seems to be broken. ' \
|
print('warning: your urllib2 version seems to be broken. ' \
|
||||||
'Using a workaround for http://bugs.python.org/issue9639', file=sys.stderr)
|
'Using a workaround for http://bugs.python.org/issue9639', file=sys.stderr)
|
||||||
|
Loading…
Reference in New Issue
Block a user