summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 76d4d0d5..5f8369d5 100644
--- a/project.py
+++ b/project.py
@@ -1491,7 +1491,7 @@ class Project(object):
1491 msg = '' 1491 msg = ''
1492 raise DownloadError('HTTP %s%s' % (e.code, msg)) 1492 raise DownloadError('HTTP %s%s' % (e.code, msg))
1493 except urllib2.URLError, e: 1493 except urllib2.URLError, e:
1494 raise DownloadError('%s (%s)' % (e.reason, req.get_host())) 1494 raise DownloadError('%s: %s ' % (req.get_host(), str(e)))
1495 1495
1496 p = None 1496 p = None
1497 try: 1497 try: