From ca5b02ec0745cdd928ecb2d2cd2e61e38f328c56 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Thu, 5 Jan 2012 13:33:57 -0500 Subject: [PATCH] small syntax error fixed --- envsetup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envsetup.py b/envsetup.py index 851752f..1b51991 100644 --- a/envsetup.py +++ b/envsetup.py @@ -42,7 +42,7 @@ def urldownload(confurl = ""): break file_size_dl += len(buffer) f.write(buffer) - status = r"%10d [%3.2f%%]" % (file_size_dl), file_size_dl * 100. / file_size) + status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size) status = status + chr(8)*(len(status)+1) print status, f.close()