summaryrefslogtreecommitdiff
path: root/yarnhelper.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-03-04 20:16:58 +0200
committerLars Wirzenius <liw@liw.fi>2017-03-04 20:16:58 +0200
commit04caf681daf43f233192b9f45ffc338205b54f4a (patch)
tree70ccfe2fbdf6ee14ec91147d8dbb443827afaa28 /yarnhelper.py
parent3b651fb14c1018d017b7fecd0be9a853094726d2 (diff)
downloadgit.liw.fi-ruleset-tests-04caf681daf43f233192b9f45ffc338205b54f4a.tar.gz
Drop now-unnecessary debugging
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(),