Author: duncan
Date: Sat May 26 07:21:04 2007
New Revision: 9604

Modified:
   branches/rel-1/freevo/src/config.py

Log:
The member functions flush and close did not take a self so they the std flush 
has been called with a self


Modified: branches/rel-1/freevo/src/config.py
==============================================================================
--- branches/rel-1/freevo/src/config.py (original)
+++ branches/rel-1/freevo/src/config.py Sat May 26 07:21:04 2007
@@ -115,10 +115,10 @@
         self.fp.flush()
         return
 
-    def flush():
+    def flush(self):
         pass
 
-    def close():
+    def close(self):
         pass
 
 

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to