|
@@ -1193,6 +1193,9 @@ def GenUsage(parser, command):
|
|
def Main(argv):
|
|
def Main(argv):
|
|
"""Doesn't parse the arguments here, just find the right subcommand to
|
|
"""Doesn't parse the arguments here, just find the right subcommand to
|
|
execute."""
|
|
execute."""
|
|
|
|
+ if sys.hexversion < 0x02050000:
|
|
|
|
+ print >> sys.stderr, (
|
|
|
|
+ '\nYour python version is unsupported, please upgrade.\n')
|
|
try:
|
|
try:
|
|
# Make stdout auto-flush so buildbot doesn't kill us during lengthy
|
|
# Make stdout auto-flush so buildbot doesn't kill us during lengthy
|
|
# operations. Python as a strong tendency to buffer sys.stdout.
|
|
# operations. Python as a strong tendency to buffer sys.stdout.
|