From 62251306692fa42493392015cb96cf78d79290ab Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Tue, 25 May 2010 06:05:41 +0000 Subject: Fix a ripple effect (_Proxy__subject) from the new-style class conversion. --- bin/scons-doc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12