From fca036611137f29ab003a6a12ca04196ba09d1c2 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 5 Aug 2013 16:04:30 +0200 Subject: also run under python 3.0 --- bin/updater.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') 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() -- cgit v1.2.3