diff options
Diffstat (limited to 'plugins/python/apkfiles')
-rw-r--r-- | plugins/python/apkfiles/apkfiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/python/apkfiles/apkfiles.py b/plugins/python/apkfiles/apkfiles.py index 0cffdd7..b6df2de 100644 --- a/plugins/python/apkfiles/apkfiles.py +++ b/plugins/python/apkfiles/apkfiles.py @@ -49,7 +49,7 @@ class ApkFiles(PluginModule): f = zf.open(name, 'r') data = f.read() - f.closed + f.close() mem_content = MemoryContent(data) encaps_content = EncapsulatedContent(content, name, mem_content) |