diff options
author | Steven Knight <knight@baldmt.com> | 2010-05-25 06:05:41 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-05-25 06:05:41 (GMT) |
commit | 62251306692fa42493392015cb96cf78d79290ab (patch) | |
tree | 3e47cda7e3318db4923a53b9fadbff2c173258e8 /bin/scons-doc.py | |
parent | 87150350eb54a30e47a3a861e3bc92439703df4d (diff) | |
download | SCons-62251306692fa42493392015cb96cf78d79290ab.zip SCons-62251306692fa42493392015cb96cf78d79290ab.tar.gz SCons-62251306692fa42493392015cb96cf78d79290ab.tar.bz2 |
Fix a ripple effect (_Proxy__subject) from the new-style class conversion.
Diffstat (limited to 'bin/scons-doc.py')
-rw-r--r-- | bin/scons-doc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/scons-doc.py b/bin/scons-doc.py index 684ece3..df35393 100644 --- a/bin/scons-doc.py +++ b/bin/scons-doc.py @@ -203,7 +203,7 @@ Sep = { orig = SCons.Node.FS.EntryProxy class MyEntryProxy(orig): def __str__(self): - return str(self._Proxy__subject).replace(os.sep, Sep) + return str(self._subject).replace(os.sep, Sep) SCons.Node.FS.EntryProxy = MyEntryProxy # Slip our own RDirs() method into the Node.FS.File class so that the |