Skip to content

Commit 711c58d

Browse files
committed
HOTFIX: bug caused by #941
1 parent a14807e commit 711c58d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ec2/spark_ec2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ def ssh(host, opts, command):
693693
def _check_output(*popenargs, **kwargs):
694694
if 'stdout' in kwargs:
695695
raise ValueError('stdout argument not allowed, it will be overridden.')
696-
process = subprocess.Popen(stdout=PIPE, *popenargs, **kwargs)
696+
process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs)
697697
output, unused_err = process.communicate()
698698
retcode = process.poll()
699699
if retcode:

0 commit comments

Comments
 (0)