From 7b47e49fa89939e91add33448b5dceacfbaf0d56 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 16 Jan 2012 10:47:44 -0800 Subject: [PATCH] ls: fix extraneous newline --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 2f1c82a672991..34b8a81b5abb7 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -183,7 +183,7 @@ def ls(): tail = os.popen( 'tail -1 %s/%s/teuthology.log' % (args.archive_dir, j) ).read().rstrip() - print " (tail '%s')" % tail + print " (tail '%s')" % tail, except IOError, e: continue print '' -- 2.39.5