Author: dmeyer
Date: Fri Mar 23 18:07:57 2007
New Revision: 2596

Modified:
   trunk/base/src/xmlutils.py

Log:
fix a small stupig bug

Modified: trunk/base/src/xmlutils.py
==============================================================================
--- trunk/base/src/xmlutils.py  (original)
+++ trunk/base/src/xmlutils.py  Fri Mar 23 18:07:57 2007
@@ -52,7 +52,7 @@
             self.content = ''
 
         def getattr(self, attr):
-            if self.attr.haskey(attr):
+            if self.attr.has_key(attr):
                 return self.attr.get(attr)
             nodes = [ n for n in self.children if n.name == attr ]
             if len(nodes) == 1:

-------------------------------------------------------------------------
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