Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #65 from sayanchowdhury/hotfix/invalid-syntax-fix
Browse files Browse the repository at this point in the history
Fix the invalid syntax issue
  • Loading branch information
sayanchowdhury authored Feb 7, 2018
2 parents f186479 + 8f0a92d commit b9955bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedimg/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_value_from_dict(_dict, *keys):


def external_run_command(command):
ret = subprocess.Popen(' '.join(command), stdin=subprocess.PIPE, shell=True
ret = subprocess.Popen(' '.join(command), stdin=subprocess.PIPE, shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
close_fds=True)
out, err = ret.communicate()
Expand Down

0 comments on commit b9955bf

Please sign in to comment.