summaryrefslogtreecommitdiff
path: root/utils/common/tarball.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/common/tarball.py')
-rwxr-xr-xutils/common/tarball.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/common/tarball.py b/utils/common/tarball.py
index 57765a55c7..2e32776702 100755
--- a/utils/common/tarball.py
+++ b/utils/common/tarball.py
@@ -5,7 +5,7 @@ import os
5import sys 5import sys
6 6
7if len(sys.argv) < 2: 7if len(sys.argv) < 2:
8 print "Usage: %s <version|hash>" % sys.argv[0] 8 print("Usage: %s <version|hash>" % sys.argv[0])
9 sys.exit() 9 sys.exit()
10 10
11repository = os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../..") 11repository = os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../..")
@@ -17,7 +17,7 @@ if '.' in sys.argv[1]:
17 if ref in refs: 17 if ref in refs:
18 tree = refs[ref] 18 tree = refs[ref]
19 else: 19 else:
20 print "Could not find hash for version!" 20 print("Could not find hash for version!")
21 sys.exit() 21 sys.exit()
22else: 22else:
23 tree = sys.argv[1] 23 tree = sys.argv[1]
@@ -25,6 +25,6 @@ else:
25 25
26gitscraper.archive_files(repository, tree, [], basename, archive="7z") 26gitscraper.archive_files(repository, tree, [], basename, archive="7z")
27 27
28print "done." 28print("done.")
29 29
30 30