summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-17 14:16:30 (GMT)
committerSteven Knight <knight@baldmt.com>2010-05-17 14:16:30 (GMT)
commit8f217f82f157714cf28fd1430b73ddfde436783e (patch)
tree33d14e3b09762140d7951754e2c1794269578207
parent5cd79f44dcaef305495f44f4a797954fa7f01c22 (diff)
downloadSCons-8f217f82f157714cf28fd1430b73ddfde436783e.zip
SCons-8f217f82f157714cf28fd1430b73ddfde436783e.tar.gz
SCons-8f217f82f157714cf28fd1430b73ddfde436783e.tar.bz2
Convert Environment._Null from an old-style class to a new-style class.
-rw-r--r--src/engine/SCons/Environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py
index f63854a..47f6c03 100644
--- a/src/engine/SCons/Environment.py
+++ b/src/engine/SCons/Environment.py
@@ -59,7 +59,7 @@ import SCons.Tool
import SCons.Util
import SCons.Warnings
-class _Null:
+class _Null(object):
pass
_null = _Null