summaryrefslogtreecommitdiff
path: root/yarnhelper.py
diff options
context:
space:
mode:
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):