From faf331d8e612f12f213e90d377a0824dd431071f Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 25 Feb 2013 13:54:21 -0800 Subject: [PATCH] remove verbosity while decompressing --- swup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swup.py b/swup.py index 977c354..9742720 100755 --- a/swup.py +++ b/swup.py @@ -190,7 +190,7 @@ def unpack(location, update_id): zfile = zipfile.ZipFile("%s/downloads/%s" % (update_cache,location)) for name in zfile.namelist(): (dirname, filename) = os.path.split(name) - print "Decompressing " + filename + " on " + dirname + #print "Decompressing " + filename + " on " + dirname if not os.path.exists("%s/downloads/%s" % (update_cache, dirname)): os.mkdir("%s/downloads/%s" % (update_cache, dirname)) if filename != "": -- 2.7.4