Skip to content
Snippets Groups Projects
Commit b7e664c4 authored by kohleman's avatar kohleman
Browse files

removed print statement for debugging

SVN: 24148
parent 551aa87d
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,6 @@ def callCommandLine(args): ...@@ -144,7 +144,6 @@ def callCommandLine(args):
Calls a command line program and returns the standard out Calls a command line program and returns the standard out
''' '''
SplitArgs = shlex.split(args) SplitArgs = shlex.split(args)
print(args)
p = subprocess.Popen(SplitArgs, stdout = subprocess.PIPE, stderr = subprocess.PIPE) p = subprocess.Popen(SplitArgs, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
out, err = p.communicate() out, err = p.communicate()
return out return out
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment