summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Executor.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/Executor.py')
-rw-r--r--src/engine/SCons/Executor.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/SCons/Executor.py b/src/engine/SCons/Executor.py
index 5b45d55..c425a05 100644
--- a/src/engine/SCons/Executor.py
+++ b/src/engine/SCons/Executor.py
@@ -47,7 +47,7 @@ class Executor:
def __init__(self, action, env=None, overridelist=[{}],
targets=[], sources=[], builder_kw={}):
- if __debug__: logInstanceCreation(self)
+ if __debug__: logInstanceCreation(self, 'Executor.Executor')
if not action:
raise SCons.Errors.UserError, "Executor must have an action."
self.action = action
@@ -204,6 +204,8 @@ class Null:
disassociate Builders from Nodes entirely, so we're not
going to worry about unit tests for this--at least for now.
"""
+ def __init__(self):
+ if __debug__: logInstanceCreation(self, 'Executor.Null')
def get_build_env(self):
class NullEnvironment:
def get_scanner(self, key):