From 9e778b335c9023197f491ab69bf1462c29f89fdb Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Fri, 14 May 2010 13:44:27 +0000 Subject: Convert old-style classes in SConsign.py to new-style classes. --- src/engine/SCons/SConsign.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/SCons/SConsign.py b/src/engine/SCons/SConsign.py index 9f07ef2..41125c5 100644 --- a/src/engine/SCons/SConsign.py +++ b/src/engine/SCons/SConsign.py @@ -108,7 +108,7 @@ def write(): else: syncmethod() -class SConsignEntry: +class SConsignEntry(object): """ Wrapper class for the generic entry in a .sconsign file. The Node subclass populates it with attributes as it pleases. @@ -126,7 +126,7 @@ class SConsignEntry: def convert_from_sconsign(self, dir, name): self.binfo.convert_from_sconsign(dir, name) -class Base: +class Base(object): """ This is the controlling class for the signatures for the collection of entries associated with a specific directory. The actual directory -- cgit v0.12