zip: improved error output. Fixes issue #201

This commit is contained in:
Jean-Francois Dockes 2014-07-06 16:32:41 +02:00
parent cada24896f
commit 958a8f6abb

View File

@ -98,7 +98,8 @@ class ZipExtractor:
try:
self.zip = ZipFile(filename)
return True
except:
except Exception, err:
self.em.rclog("openfile: failed: [%s]" % err)
return False
def getipath(self, params):