# HG changeset patch # User Oleg Oshmyan # Date 1313670677 -10800 # Node ID 78be952f6b4023adb4f2c1743da8bc1c8a1380d7 # Parent 8c4e92fb32d8cd1bbcf111e01c6cc799c979f394 Changed the help message to say Python 2.6 is required Change back when full Python 2.5 support is implemented. diff -r 8c4e92fb32d8 -r 78be952f6b40 upreckon/upreckon-vcs --- a/upreckon/upreckon-vcs Thu Aug 18 02:51:31 2011 +0300 +++ b/upreckon/upreckon-vcs Thu Aug 18 15:31:17 2011 +0300 @@ -7,8 +7,7 @@ from upreckon import compat from upreckon.compat import * -version = '2.03.0 ($$REV$$)' -parser = optparse.OptionParser(version='Upreckon '+version, epilog='Python 2.5 or newer is required.') +parser = optparse.OptionParser(version='Upreckon 2.03.0 ($$REV$$)', epilog='Python 2.6 or newer is required.') parser.add_option('-1', dest='legacy', action='store_true', default=False, help='handle configuration files in a way more compatible with test.py 1.x') parser.add_option('-p', '--problem', dest='problems', metavar='PROBLEM', action='append', help='test only the PROBLEM (this option can be specified more than once with different problem names, all of which will be tested)') parser.add_option('--list-problems', action='store_true', default=False, help='just list all problem names')