Skip to content

Commit

Permalink
HOTFIX: bug caused by apache#941
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Jun 17, 2014
1 parent a14807e commit 711c58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2/spark_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def ssh(host, opts, command):
def _check_output(*popenargs, **kwargs):
if 'stdout' in kwargs:
raise ValueError('stdout argument not allowed, it will be overridden.')
process = subprocess.Popen(stdout=PIPE, *popenargs, **kwargs)
process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs)
output, unused_err = process.communicate()
retcode = process.poll()
if retcode:
Expand Down

0 comments on commit 711c58d

Please sign in to comment.