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
|
||||
try:
|
||||
jar = JarExtractor(storage.open(src), storage.open(dest))
|
||||
jar = JarExtractor(storage.open(src, 'r'), storage.open(dest, 'w'))
|
||||
except:
|
||||
log.error("Archive extraction failed. Bad archive?", exc_info=True)
|
||||
raise SigningError("Archive extraction failed. Bad archive?")
|
||||
|
|
Загрузка…
Ссылка в новой задаче