From da01fffe3aaddfa953358bea59e09c58fa749349 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 16 Sep 2015 16:34:56 +0100 Subject: Don't direct output to self.output. --- openstack/tester | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/tester b/openstack/tester index cf89942..fe14388 100755 --- a/openstack/tester +++ b/openstack/tester @@ -272,7 +272,7 @@ class ReleaseApp(cliapp.Application): print('Running test: ' + data['name']) for cmd in data['commands']: print('$ ' + cmd) - instance.runcmd(['sh', '-c', cmd], stdout=self.output) + instance.runcmd(['sh', '-c', cmd]) def deploy_and_test_systems(self, tests): """Run the deployments and tests""" -- cgit v1.2.1