Skip to content

Commit 475960f

Browse files
authored
Remove r:gz option
1 parent 105d9f8 commit 475960f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ddiff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def diff_image(base_tag, target_tag):
212212
def load_image(image_tarball):
213213
input_dir = ".ddiff-image"
214214
shutil.rmtree(input_dir, ignore_errors=True)
215-
with tarfile.open(image_tarball, "r:gz") as tar:
215+
with tarfile.open(image_tarball) as tar:
216216
tar.extractall()
217217

218218
with open(os.path.join(input_dir, "BASE")) as f:

0 commit comments

Comments
 (0)