From 403a34bea3c54801c1573cbf1b283a30bd150a7d Mon Sep 17 00:00:00 2001 From: gsherman Date: Tue, 15 Jan 2008 06:19:14 +0000 Subject: [PATCH] Minor cleanup to the output when unzipping a pyqgis plugin git-svn-id: http://svn.osgeo.org/qgis/trunk@7970 c8812cc2-4d05-0410-92ff-de0c093fc19c --- python/plugins/plugin_installer/qgis_plugins.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/plugins/plugin_installer/qgis_plugins.py b/python/plugins/plugin_installer/qgis_plugins.py index 4bc0b8d7a7c..06a64754b66 100644 --- a/python/plugins/plugin_installer/qgis_plugins.py +++ b/python/plugins/plugin_installer/qgis_plugins.py @@ -40,7 +40,7 @@ class unzip: zf = zipfile.ZipFile(file) # create directory structure to house files - print "Creating plugin structure" + print "Creating plugin structure:" self._createstructure(file, dir) num_files = len(zf.namelist()) @@ -70,7 +70,7 @@ class unzip: def _makedirs(self, directories, basedir): """ Create any directories that don't currently exist """ - print "Creating directories contained in the zip file: %s" % directories + print "Processing directories contained in the zip file: %s" % directories for dir in directories: curdir = os.path.join(basedir, dir) # normalize the path @@ -91,7 +91,7 @@ class unzip: for file in zf.filelist: if file.external_attr >> 28 == 4: - print "Adding %s to the list of directories to create" % file.filename + # print "Adding %s to the list of directories to create" % file.filename dirs.append(file.filename) #for name in zf.namelist():