Skip to content

Commit

Permalink
Removing strip() from executing command.
Browse files Browse the repository at this point in the history
  • Loading branch information
djw8605 committed Nov 9, 2012
1 parent 7a6932f commit 252bff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-lib/campus_factory/util/ExternalCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def RunExternal(command, str_stdin=""):
"""

logging.info("Running external command: %s" % command)
popen_inst = subprocess.Popen(command.split(), shell=True, stdin=subprocess.PIPE,
popen_inst = subprocess.Popen(command, shell=True, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.PIPE )
logging.debug("stdin = %s" % str_stdin)
str_stdout = str_stderr = ""
Expand Down

0 comments on commit 252bff5

Please sign in to comment.