summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-08-05 16:04:30 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-08-05 16:04:30 +0200
commitfca036611137f29ab003a6a12ca04196ba09d1c2 (patch)
tree25fda3d718c740d1bbdcd1ad4deff4b7c43d223b /bin
parentf02c70d5de7912475cfa9cedc5826ec620872e5b (diff)
also run under python 3.0
Diffstat (limited to 'bin')
-rw-r--r--bin/updater.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/updater.py b/bin/updater.py
index c6a9b5d38..805421e20 100644
--- a/bin/updater.py
+++ b/bin/updater.py
@@ -142,8 +142,8 @@ def main():
if __name__ == '__main__':
- if sys.version_info < (3, 3):
- print('Python 3.3 is required to run this script')
+ if sys.version_info < (3, 0):
+ print('Python 3.0 or higher is required to run this script')
else:
main()