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 f48472b4..f1a931c6 100644
--- a/project.py
+++ b/project.py
@@ -1529,7 +1529,7 @@ class Project(object):
1529 1529
1530 p = None 1530 p = None
1531 try: 1531 try:
1532 size = r.headers['content-length'] 1532 size = r.headers.get('content-length', 0)
1533 unit = 1 << 10 1533 unit = 1 << 10
1534 1534
1535 if size and not quiet: 1535 if size and not quiet: