diff options
-rw-r--r-- | bitbake/lib/bb/persist_data.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index 5795bc835b..e45042324e 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py | |||
@@ -201,6 +201,7 @@ class PersistData(object): | |||
201 | def connect(database): | 201 | def connect(database): |
202 | connection = sqlite3.connect(database, timeout=5, isolation_level=None) | 202 | connection = sqlite3.connect(database, timeout=5, isolation_level=None) |
203 | connection.execute("pragma synchronous = off;") | 203 | connection.execute("pragma synchronous = off;") |
204 | connection.text_factory = str | ||
204 | return connection | 205 | return connection |
205 | 206 | ||
206 | def persist(domain, d): | 207 | def persist(domain, d): |