mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Added zip extraction exception logging.
This commit is contained in:
parent
92828eca54
commit
7fff3e0d63
1 changed files with 2 additions and 1 deletions
|
@ -1199,5 +1199,6 @@ def extractZip(archive, targetDir):
|
|||
target.close()
|
||||
zip_file.close()
|
||||
return True
|
||||
except:
|
||||
except Exception as e:
|
||||
logger.log(u"Zip extraction error: " + str(e), logger.ERROR)
|
||||
return False
|
Loading…
Reference in a new issue