Be most explicit about mode when opening files
Ameliorate broken file handle handling
This commit is contained in:
Родитель
9446346930
Коммит
ef4efb924d
|
@ -38,7 +38,7 @@ def sign_app(src, dest):
|
||||||
|
|
||||||
# Extract necessary info from the archive
|
# Extract necessary info from the archive
|
||||||
try:
|
try:
|
||||||
jar = JarExtractor(storage.open(src), storage.open(dest))
|
jar = JarExtractor(storage.open(src, 'r'), storage.open(dest, 'w'))
|
||||||
except:
|
except:
|
||||||
log.error("Archive extraction failed. Bad archive?", exc_info=True)
|
log.error("Archive extraction failed. Bad archive?", exc_info=True)
|
||||||
raise SigningError("Archive extraction failed. Bad archive?")
|
raise SigningError("Archive extraction failed. Bad archive?")
|
||||||
|
|
Загрузка…
Ссылка в новой задаче