summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 35dbafd4..3f0fd80b 100644
--- a/project.py
+++ b/project.py
@@ -1601,7 +1601,7 @@ class Project(object):
1601 1601
1602 p = None 1602 p = None
1603 try: 1603 try:
1604 size = pos + r.headers.get('content-length', 0) 1604 size = pos + int(r.headers.get('content-length', 0))
1605 unit = 1 << 10 1605 unit = 1 << 10
1606 1606
1607 if size and not quiet: 1607 if size and not quiet: