mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 09:35:39 +01:00
Linux binary installer: Fix an error when using proxies and python 3
Fixes #1286274 [Binary linux installer fails because of bug in proxy debugging output](https://bugs.launchpad.net/calibre/+bug/1286274)
This commit is contained in:
parent
15962b8897
commit
ffc4cadf39
1 changed files with 1 additions and 1 deletions
|
|
@ -349,7 +349,7 @@ def get_proxies(debug=True):
|
|||
del proxies[key]
|
||||
|
||||
if proxies and debug:
|
||||
prints('Using proxies:', proxies)
|
||||
prints('Using proxies:', repr(proxies))
|
||||
return proxies
|
||||
|
||||
class HTTPError(ValueError):
|
||||
|
|
|
|||
Loading…
Reference in a new issue