diff options
Diffstat (limited to 'doctor_tests/common/utils.py')
-rw-r--r-- | doctor_tests/common/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doctor_tests/common/utils.py b/doctor_tests/common/utils.py index 01889d9a..1a84c824 100644 --- a/doctor_tests/common/utils.py +++ b/doctor_tests/common/utils.py @@ -77,7 +77,8 @@ class SSHClient(object): output.append(line.decode('utf-8')) if ret: if self.log: - self.log.info("*** FAILED to run command %s (%s)" % (command, ret)) + self.log.info("*** FAILED to run command %s (%s)" + % (command, ret)) raise Exception( "Unable to run \ncommand: %s\nret: %s" % (command, ret)) |