summaryrefslogtreecommitdiff
path: root/buildlibxml.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildlibxml.py')
-rw-r--r--buildlibxml.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildlibxml.py b/buildlibxml.py
index 4968eeaa..2f5e1a19 100644
--- a/buildlibxml.py
+++ b/buildlibxml.py
@@ -137,7 +137,8 @@ def remote_listdir(url):
return _list_dir_urllib(url)
except IOError:
assert url.lower().startswith('ftp://')
- print("Requesting with urllib failed. Falling back to ftplib. Proxy argument will be ignored")
+ print("Requesting with urllib failed. Falling back to ftplib. "
+ "Proxy argument will be ignored for %s" % url)
return _list_dir_ftplib(url)