summaryrefslogtreecommitdiff
path: root/yarnhelper.py
diff options
context:
space:
mode:
Diffstat (limited to 'yarnhelper.py')
-rw-r--r--yarnhelper.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/yarnhelper.py b/yarnhelper.py
index a3c2ddd..8af9cf5 100644
--- a/yarnhelper.py
+++ b/yarnhelper.py
@@ -179,10 +179,6 @@ class YarnHelper(object):
def gitano(self, user, args, stdin=None): # pragma: no cover
server = os.environ['GITANO_SERVER']
- print '=' * 77
- print 'tgt:', 'git@{}'.format(server)
- print 'args:', repr(args.split())
- print 'listdir:', repr(os.listdir('.'))
kwargs = {
'stderr': subprocess.STDOUT,
'ssh_options': [
@@ -193,7 +189,6 @@ class YarnHelper(object):
}
if stdin is not None:
kwargs['feed_stdin'] = stdin
- print 'kwargs:', repr(kwargs)
return cliapp.ssh_runcmd(
'git@{}'.format(server),
args.split(),