From 345b0af54af1099cd322dd9224023a18a1a851c6 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 19 May 2015 10:20:35 -0600 Subject: [PATCH] Remove another pointless stdout suppression Signed-off-by: Zack Cerza --- teuthology/task/kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/kernel.py b/teuthology/task/kernel.py index bd4486d530..d40699df7b 100644 --- a/teuthology/task/kernel.py +++ b/teuthology/task/kernel.py @@ -936,7 +936,7 @@ def get_latest_image_version_deb(remote, ostype): if 'ubuntu' in ostype: try: remote.run(args=['sudo', 'apt-get', '-y', 'install', - 'linux-image-current-generic'], stdout=output) + 'linux-image-current-generic']) remote.run(args=['dpkg', '-s', 'linux-image-current-generic'], stdout=output) for line in output.getvalue().split('\n'): -- 2.39.5