From 8a9a567067a4ecf2c800a7cf06e78de7b5db6ddf Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Wed, 21 Mar 2012 11:58:17 -0700 Subject: [PATCH] suite: fix print statement when summary doesn't exist --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index a0d33d60fabea..8bb3c9f67703e 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -169,7 +169,7 @@ def ls(): summary.update(new) except IOError, e: if e.errno == errno.ENOENT: - print '%s ', + print '%s ' % j # pid try: -- 2.39.5