summaryrefslogtreecommitdiff
path: root/yarnhelper.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-03-04 16:27:33 +0200
committerLars Wirzenius <liw@liw.fi>2017-03-04 16:27:33 +0200
commit0be7a9d091d9728d1b90c012bbe21b7f5320425d (patch)
treee3f31aa0fbcaaefe63d5669132f2ec670a918dfe /yarnhelper.py
parent2135942e49989c10c73464b1bdfdf490e8edd24a (diff)
downloadgit.liw.fi-ruleset-tests-0be7a9d091d9728d1b90c012bbe21b7f5320425d.tar.gz
Delete test users at the end
Diffstat (limited to 'yarnhelper.py')
-rw-r--r--yarnhelper.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/yarnhelper.py b/yarnhelper.py
index 5b087be..18467ed 100644
--- a/yarnhelper.py
+++ b/yarnhelper.py
@@ -132,7 +132,10 @@ class YarnHelper(object):
def gitano(self, args): # pragma: no cover
server = os.environ['GITANO_SERVER']
- return cliapp.ssh_runcmd('git@{}'.format(server), [args])
+ return cliapp.ssh_runcmd(
+ 'git@{}'.format(server),
+ args.split(),
+ stderr=subprocess.STDOUT)
class Error(Exception):