1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-13 09:16:14 +01:00

- oops (forgot 'not')

This commit is contained in:
Marcus Huewe 2010-08-26 17:38:47 +02:00
parent 0473f4b9ec
commit 788342ea1b

View File

@ -368,7 +368,7 @@ def _build_opener(url):
# workaround for http://bugs.python.org/issue9639
authhandler_class = urllib2.HTTPBasicAuthHandler
if sys.version_info >= (2, 6, 6) and sys.version_info < (2, 7, 1) \
and 'reset_retry_count' in dir(urllib2.HTTPBasicAuthHandler):
and not 'reset_retry_count' in dir(urllib2.HTTPBasicAuthHandler):
print >>sys.stderr, 'warning: your urllib2 version seems to be broken. ' \
'Using a workaround for http://bugs.python.org/issue9639'
class OscHTTPBasicAuthHandler(urllib2.HTTPBasicAuthHandler):