mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
bitbake persist_data: Fix module reference
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2364 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -97,7 +97,7 @@ class PersistData:
|
|||||||
try:
|
try:
|
||||||
self.connection.execute(query)
|
self.connection.execute(query)
|
||||||
return
|
return
|
||||||
except pysqlite2.dbapi2.OperationalError, e:
|
except sqlite3.OperationalError, e:
|
||||||
if 'database is locked' in str(e):
|
if 'database is locked' in str(e):
|
||||||
continue
|
continue
|
||||||
raise
|
raise
|
||||||
|
|||||||
Reference in New Issue
Block a user