summaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorptomulik <ptomulik@meil.pw.edu.pl>2014-03-13 15:24:03 (GMT)
committerptomulik <ptomulik@meil.pw.edu.pl>2014-03-13 15:24:03 (GMT)
commit6f86f92d792da7edd0a638ca2a49fe443b042709 (patch)
treec1a2fd4db26b2a3975c6f26bb6d32c2c8ae18dc1 /src/engine
parentcb44210566c28d16c1e2c91d898306ad539fa9f5 (diff)
downloadSCons-6f86f92d792da7edd0a638ca2a49fe443b042709.zip
SCons-6f86f92d792da7edd0a638ca2a49fe443b042709.tar.gz
SCons-6f86f92d792da7edd0a638ca2a49fe443b042709.tar.bz2
Fixed "communicate()" interface in Action._subproc()
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/SCons/Action.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Action.py b/src/engine/SCons/Action.py
index a6dbb7c..33d8790 100644
--- a/src/engine/SCons/Action.py
+++ b/src/engine/SCons/Action.py
@@ -679,7 +679,7 @@ def _subproc(scons_env, cmd, error = 'ignore', **kw):
# return a dummy Popen instance that only returns error
class dummyPopen(object):
def __init__(self, e): self.exception = e
- def communicate(self): return ('','')
+ def communicate(self,input=None): return ('','')
def wait(self): return -self.exception.errno
stdin = None
class f(object):