summaryrefslogtreecommitdiffstats
path: root/src/script
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2015-08-06 17:14:50 (GMT)
committerDirk Baechle <dl9obn@darc.de>2015-08-06 17:14:50 (GMT)
commitf1dbc3edd79cfbc80e469377bf8d45624cc04d40 (patch)
tree819103cc2938aec5231da4cd07eac71ea6d90c06 /src/script
parent1787f2cb6c75f45c6b0ac7a6c3c9c4b0ea95c5eb (diff)
parent2dd443706e2c6a2f85e9ac40a237fc2c73aab345 (diff)
downloadSCons-f1dbc3edd79cfbc80e469377bf8d45624cc04d40.zip
SCons-f1dbc3edd79cfbc80e469377bf8d45624cc04d40.tar.gz
SCons-f1dbc3edd79cfbc80e469377bf8d45624cc04d40.tar.bz2
Merged in dirkbaechle/scons : switch of core classes to slots, memoizer subsystem now uses decorators
Diffstat (limited to 'src/script')
-rw-r--r--src/script/sconsign.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sconsign.py b/src/script/sconsign.py
index e5e9d4f..ef32a93 100644
--- a/src/script/sconsign.py
+++ b/src/script/sconsign.py
@@ -278,7 +278,7 @@ def field(name, entry, verbose=Verbose):
def nodeinfo_raw(name, ninfo, prefix=""):
# This just formats the dictionary, which we would normally use str()
# to do, except that we want the keys sorted for deterministic output.
- d = ninfo.__dict__
+ d = ninfo.__getstate__()
try:
keys = ninfo.field_list + ['_version_id']
except AttributeError: