diff options
| author | Steven Knight <knight@baldmt.com> | 2010-05-15 14:24:28 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2010-05-15 14:24:28 (GMT) |
| commit | c0f96807f95bb499b839fac20917adf23718cb01 (patch) | |
| tree | 94af35addab045f305a9ca93425ea6683e360696 /src/engine/SCons/Variables/PathVariable.py | |
| parent | 90c7ba4bd6c3d49a7b4d34895c9a8dbce7c20deb (diff) | |
| download | SCons-c0f96807f95bb499b839fac20917adf23718cb01.zip SCons-c0f96807f95bb499b839fac20917adf23718cb01.tar.gz SCons-c0f96807f95bb499b839fac20917adf23718cb01.tar.bz2 | |
Convert old-style classes in Variables/{__init__,PathVariable}.py to new-style classes.
Diffstat (limited to 'src/engine/SCons/Variables/PathVariable.py')
| -rw-r--r-- | src/engine/SCons/Variables/PathVariable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Variables/PathVariable.py b/src/engine/SCons/Variables/PathVariable.py index 4052531..951fc75 100644 --- a/src/engine/SCons/Variables/PathVariable.py +++ b/src/engine/SCons/Variables/PathVariable.py @@ -77,7 +77,7 @@ import os.path import SCons.Errors -class _PathVariableClass: +class _PathVariableClass(object): def PathAccept(self, key, val, env): """Accepts any path, no checking done.""" |
