mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
Remove debug prints
This commit is contained in:
parent
fe3dee116d
commit
59b0773667
1 changed files with 0 additions and 2 deletions
|
@ -598,7 +598,6 @@ def run_subproc(cmds, captured=True):
|
|||
if n is None:
|
||||
aliased_cmd = cmd
|
||||
else:
|
||||
print(n, cmd[1:])
|
||||
try:
|
||||
aliased_cmd = get_script_subproc_command(n, cmd[1:])
|
||||
except PermissionError:
|
||||
|
@ -697,7 +696,6 @@ def subproc_uncaptured(*cmds):
|
|||
"""Runs a subprocess, without capturing the output. Returns the stdout
|
||||
that was produced as a str.
|
||||
"""
|
||||
print(cmds)
|
||||
return run_subproc(cmds, captured=False)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue