From 762a1ae7b9ba877b12870ba5a62dc0232d05de2d Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Fri, 22 Dec 2017 19:39:03 -1000 Subject: [PATCH] Minor log removal --- hecl/blender/zip_package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hecl/blender/zip_package.py b/hecl/blender/zip_package.py index 2bcb8703f..dc4b897e6 100644 --- a/hecl/blender/zip_package.py +++ b/hecl/blender/zip_package.py @@ -11,7 +11,7 @@ package_path = 'hecl' target_zip = sys.argv[1] zf = zipfile.ZipFile(target_zip, mode='w', compression=zipfile.ZIP_DEFLATED) -print('GENERATING', target_zip) +#print('GENERATING', target_zip) if os.path.isdir(package_path): zipdir(package_path, zf)