From: Richard Purdie Date: Sat, 4 Aug 2007 23:58:56 +0000 (+0000) Subject: bitbake persist_data: Fix for python 2.4 X-Git-Tag: 2011-1~11052 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6883189d5fd46d390540d65d95dd75fcd22522de;p=openembedded-core.git bitbake persist_data: Fix for python 2.4 git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2366 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index 0f31b4c845..0b88dadba5 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py @@ -92,10 +92,10 @@ 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) + self.connection.execute(*query) return except sqlite3.OperationalError, e: if 'database is locked' in str(e):