Remove debug prints

This commit is contained in:
Steven Silvester 2016-01-21 12:33:16 -06:00
parent fe3dee116d
commit 59b0773667

View file

@ -598,7 +598,6 @@ def run_subproc(cmds, captured=True):
if n is None: if n is None:
aliased_cmd = cmd aliased_cmd = cmd
else: else:
print(n, cmd[1:])
try: try:
aliased_cmd = get_script_subproc_command(n, cmd[1:]) aliased_cmd = get_script_subproc_command(n, cmd[1:])
except PermissionError: except PermissionError:
@ -697,7 +696,6 @@ def subproc_uncaptured(*cmds):
"""Runs a subprocess, without capturing the output. Returns the stdout """Runs a subprocess, without capturing the output. Returns the stdout
that was produced as a str. that was produced as a str.
""" """
print(cmds)
return run_subproc(cmds, captured=False) return run_subproc(cmds, captured=False)