diff options
Diffstat (limited to 'gn3/fs_helpers.py')
-rw-r--r-- | gn3/fs_helpers.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gn3/fs_helpers.py b/gn3/fs_helpers.py index e2f7ee2..73f6567 100644 --- a/gn3/fs_helpers.py +++ b/gn3/fs_helpers.py @@ -71,8 +71,9 @@ contents to TARGET_DIR/<dir-hash>. os.mkdir(os.path.join(target_dir, token)) gzipped_file.save(tar_target_loc) # Extract to "tar_target_loc/token" - with tarfile.open(tar_target_loc) as tar: - tar.extractall(path=os.path.join(target_dir, token)) + tar = tarfile.open(tar_target_loc) + tar.extractall(path=os.path.join(target_dir, token)) + tar.close() # pylint: disable=W0703 except Exception: return {"status": 128, "error": "gzip failed to unpack file"} |