summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-05-30 04:31:17 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-05-30 04:31:17 (GMT)
commit1a62acec9cd412250b8b65e4f64d1e7f828a63df (patch)
treec195f0eb08e0317656f8587b7adb6328536820c4 /src
parent4599444f86e113d52c6ccad970d78d7821021e46 (diff)
downloadSCons-1a62acec9cd412250b8b65e4f64d1e7f828a63df.zip
SCons-1a62acec9cd412250b8b65e4f64d1e7f828a63df.tar.gz
SCons-1a62acec9cd412250b8b65e4f64d1e7f828a63df.tar.bz2
PEP8
Diffstat (limited to 'src')
-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 0250bc9..118c495 100644
--- a/src/engine/SCons/Action.py
+++ b/src/engine/SCons/Action.py
@@ -751,7 +751,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,input=None): return ('','')
+ def communicate(self, input=None): return ('', '')
def wait(self): return -self.exception.errno
stdin = None
class f(object):