Skip to content

Commit 6ba0c25

Browse files
committed
TUN-8694: Fix github release script
Remove parameter from extractall function since it does not exist in python 3.7
1 parent 48f703f commit 6ba0c25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def assert_asset_version(binary_path, release_version):
254254
binary_version = get_binary_version(binary_path)
255255
elif ext == '.tgz':
256256
tar = tarfile.open(binary_path, "r:gz")
257-
tar.extractall("tmp", filter='data')
257+
tar.extractall("tmp")
258258
tar.close()
259259
binary_path = os.path.join(os.getcwd(), 'tmp', 'cloudflared')
260260
binary_version = get_binary_version(binary_path)

0 commit comments

Comments
 (0)