diff options
author | Thomas Keck <thomas@macbook.macbook> | 2010-03-12 22:25:13 +0100 |
---|---|---|
committer | Thomas Keck <thomas@macbook.macbook> | 2010-03-12 22:25:13 +0100 |
commit | 101f17e7185383453e762ef836101d0c90f04564 (patch) | |
tree | 36131edf4a937d6ef7edd26fe1f508d4ffe26494 | |
parent | 83bb1f5ec48cd4d6f2a964322bd42bd42e23cfc0 (diff) | |
download | magicproxy-101f17e7185383453e762ef836101d0c90f04564.tar.gz magicproxy-101f17e7185383453e762ef836101d0c90f04564.zip |
urlunparese
-rwxr-xr-x | proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ class Fetcher(asynchat.async_chat): self.reader.handle_incoming_http_header(self.http_header) def __str__(self): - return "<Fetcher proxy=%s url=%s range=%s" % (self.proxy, self.url, self.range) + return "<Fetcher proxy=%s url=%s range=%s" % (self.proxy, urlparse.urlunparse(self.url), self.range) class MultipleProxyReader(object): def __init__(self, channel, url, header, content_length): |