From: Scott Kostyshak Date: Mon, 4 Feb 2013 08:06:08 +0000 (-0500) Subject: keytest.py: do not print the same thing twice X-Git-Tag: 2.1.0beta1~808 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e609787a0f90a2f66fe8177c29cdc9daeba28fd6;p=features.git keytest.py: do not print the same thing twice keytest.py now only prints one time the command that it is executing for an assert. The command is already printed in the function responsible for executing it, so it is not necessary to print the command before calling that function. --- diff --git a/development/autotests/keytest.py b/development/autotests/keytest.py index a48f85676b..a510a3faaf 100755 --- a/development/autotests/keytest.py +++ b/development/autotests/keytest.py @@ -384,7 +384,6 @@ while not failed: sendKeystring(ResetCommand, lyx_pid) elif c[0:6] == 'Assert': cmd = c[7:].rstrip() - print "Executing " + cmd result = intr_system(cmd) failed = failed or (result != 0) print "result=" + str(result) + ", failed=" + str(failed)