Closed GoogleCodeExporter closed 9 years ago
I fixed this one by:
lars@dachs:/usr/lib/python2.7/dist-packages/gphotoframe/utils$ diff urlget.py
urlget.py.orig
34,35d33
< import urlparse
<
42,44c40
< _up=urlparse.urlsplit(proxy)
< self.proxy_host=_up.hostname
< self.proxy_port=_up.port
---
> self.proxy_host, self.proxy_port = client._parse(proxy)[1:3]
58,62c54
< _up=urlparse.urlsplit(url)
< scheme=_up.scheme
< host=_up.hostname
< port=_up.port
< path=_up.path
---
> scheme, host, port, path = client._parse(url)
Original comment by lars.h...@googlemail.com
on 31 Jul 2014 at 10:37
Attachments:
Thanks for your report and patch.
Fixed in revision 921fd13c4ce0.
Original comment by yendo0206
on 12 Aug 2014 at 2:14
Original issue reported on code.google.com by
lars.h...@googlemail.com
on 31 Jul 2014 at 10:11