Commit e6a12bbf authored by Jason R. Coombs's avatar Jason R. Coombs

Include url in warning when processing URL. Fixes #135.

--HG--
branch : distribute
extra : rebase_source : 1241e1cb548adad562fcf61ce33538712a64aaed
parent 9b09f6d1
......@@ -198,7 +198,7 @@ class PackageIndex(Environment):
return
self.info("Reading %s", url)
f = self.open_url(url, "Download error: %s -- Some packages may not be found!")
f = self.open_url(url, "Download error on %s: %%s -- Some packages may not be found!" % url)
if f is None: return
self.fetched_urls[url] = self.fetched_urls[f.url] = True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment