]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake persist_data: Fix for python 2.4
authorRichard Purdie <richard@openedhand.com>
Sat, 4 Aug 2007 23:54:31 +0000 (23:54 +0000)
committerRichard Purdie <richard@openedhand.com>
Sat, 4 Aug 2007 23:54:31 +0000 (23:54 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2365 311d38ba-8fff-0310-9ca6-ca027cbcb966

bitbake/lib/bb/persist_data.py

index 283de9863d4d9e8445a0aeffab1fcaaf85439a56..0f31b4c8452bda079dbbe9a67e3a1c15219a6751 100644 (file)
@@ -92,7 +92,7 @@ class PersistData:
         """
         self._execute("DELETE from %s where key=?;" % domain, [key])
 
-    def _execute(self, *query):
+    def _execute(self, **query):
         while True:    
             try:
                 self.connection.execute(query)