aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/build.py b/build.py
index 2eff878..f52b4a6 100644
--- a/build.py
+++ b/build.py
@@ -1,6 +1,6 @@
import os, os.path, zipfile, sys
-xpi = zipfile.ZipFile('redirector-' + raw_input('Version: ') + '.xpi','w')
+xpi = zipfile.ZipFile('redirector-' + input('Version: ') + '.xpi','w')
for (root, folders, files) in os.walk('.'):
if 'unittest' in root:
continue
@@ -10,5 +10,3 @@ for (root, folders, files) in os.walk('.'):
xpi.write(os.path.join(root[2:],f))
xpi.close()
-
-