From 4751a1211aa2b03365dbbdc246401b59f7714cbc Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Tue, 18 May 2010 13:25:27 +0000 Subject: Convert Environment.MethodWrapper from an old-style class to a new-style class. --- src/engine/SCons/Environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py index 47f6c03..44f916d 100644 --- a/src/engine/SCons/Environment.py +++ b/src/engine/SCons/Environment.py @@ -194,7 +194,7 @@ def _delete_duplicates(l, keep_last): # BuilderWrapper a subclass that overrides __call__() to enforce specific # Builder calling conventions, simplified some of our higher-layer code. -class MethodWrapper: +class MethodWrapper(object): """ A generic Wrapper class that associates a method (which can actually be any callable) with an object. As part of creating this -- cgit v0.12