https://bugzilla.novell.com/show_bug.cgi?id=298378#c3 --- Comment #3 from Peter Poeml <poeml@novell.com> 2007-08-08 07:23:36 MST --- I'll add the following patch to work around, so the error will be gone: Index: osc/conf.py =================================================================== --- osc/conf.py (revision 1941) +++ osc/conf.py (working copy) @@ -122,6 +122,15 @@ global cookiejar + # HTTPS proxy is not supported by urllib2. It only leads to an error + # or, at best, a warning. + # https://bugzilla.novell.com/show_bug.cgi?id=214983 + # https://bugzilla.novell.com/show_bug.cgi?id=298378 + if 'https_proxy' in os.environ: + del os.environ['https_proxy'] + if 'HTTPS_PROXY' in os.environ: + del os.environ['HTTPS_PROXY'] + if config['http_debug']: # brute force def urllib2_debug_init(self, debuglevel=0): -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.