Author: dmeyer
Date: Tue Jan 23 19:01:32 2007
New Revision: 2441

Modified:
   trunk/base/src/utils.py

Log:
rename Memberfunction to MemberFunction

Modified: trunk/base/src/utils.py
==============================================================================
--- trunk/base/src/utils.py     (original)
+++ trunk/base/src/utils.py     Tue Jan 23 19:01:32 2007
@@ -190,7 +190,7 @@
     Create Singleton object from classref on demand.
     """
 
-    class Memberfunction(object):
+    class MemberFunction(object):
         def __init__(self, singleton, name):
             self._singleton = singleton
             self._name = name
@@ -210,5 +210,5 @@
 
     def __getattr__(self, attr):
         if self._singleton is None:
-            return Singleton.Memberfunction(self, attr)
+            return Singleton.MemberFunction(self, attr)
         return getattr(self, _singleton, attr)

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to