Added error logging for backup zip creation.

This commit is contained in:
echel0n 2014-06-24 16:59:14 -07:00
parent 696a1a9f4a
commit 92828eca54
1 changed files with 2 additions and 1 deletions

View File

@ -1170,7 +1170,8 @@ def makeZip(fileList, archive):
a.write(f)
a.close()
return True
except:
except Exception as e:
logger.log(u"Zip creation error: " + str(e), logger.ERROR)
return False