diff options
author | Steven Knight <knight@baldmt.com> | 2010-05-17 14:16:30 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-05-17 14:16:30 (GMT) |
commit | 8f217f82f157714cf28fd1430b73ddfde436783e (patch) | |
tree | 33d14e3b09762140d7951754e2c1794269578207 /src | |
parent | 5cd79f44dcaef305495f44f4a797954fa7f01c22 (diff) | |
download | SCons-8f217f82f157714cf28fd1430b73ddfde436783e.zip SCons-8f217f82f157714cf28fd1430b73ddfde436783e.tar.gz SCons-8f217f82f157714cf28fd1430b73ddfde436783e.tar.bz2 |
Convert Environment._Null from an old-style class to a new-style class.
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/Environment.py | 2 |
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 |