From: Richard Purdie Date: Sat, 4 Aug 2007 23:54:31 +0000 (+0000) Subject: bitbake persist_data: Fix for python 2.4 X-Git-Tag: 2011-1~11053 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ce4ba3c2b74279a5ec1acc03730cdaa5d94a159f;p=openembedded-core.git 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 --- diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index 283de9863d..0f31b4c845 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py @@ -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)