From 2b24cbcdebae4aa38ed7f232a99859406307369b Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Wed, 5 Jul 2006 07:29:44 -0800 Subject: [PATCH] comment out some debugging.. [git-p4: depot-paths = "//depot/": change = 820] --- ZipStorage.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ZipStorage.py b/ZipStorage.py index a17768a..c6779f1 100644 --- a/ZipStorage.py +++ b/ZipStorage.py @@ -212,8 +212,8 @@ def genZipFile(path): try: return zipfile.ZipFile(path) except: - import traceback - traceback.print_exc(file=log.logfile) + #import traceback + #traceback.print_exc(file=log.logfile) pass log.msg('trying tar now:', `path`) @@ -227,8 +227,8 @@ def genZipFile(path): comp = tarfile.TAR_PLAIN return tarfile.TarFileCompat(path, compression=comp) except: - import traceback - traceback.print_exc(file=log.logfile) + #import traceback + #traceback.print_exc(file=log.logfile) raise class ZipObject(FSObject, StorageFolder):