bitbake persist_data: Fix for python 2.4

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2365 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-08-04 23:54:31 +00:00
parent e33eaf13d5
commit ce4ba3c2b7
1 changed files with 1 additions and 1 deletions

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