1
0
mirror of https://github.com/OfflineIMAP/offlineimap.git synced 2024-06-26 07:29:03 +02:00

Merge tag 'v6.7.0.3' into next

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2016-07-26 08:47:11 +02:00
commit 2f060aa269
2 changed files with 9 additions and 0 deletions

View File

@ -15,6 +15,13 @@ This is the Changelog of the maintenance branch.
If anyone volunteers to maintain it and backport patches, let us know! If anyone volunteers to maintain it and backport patches, let us know!
### OfflineIMAP v6.7.0.3 (2016-07-26)
#### Bug Fixes
* sqlite: properly serialize operations on the database files
### OfflineIMAP v6.7.0.2 (2016-07-22) ### OfflineIMAP v6.7.0.2 (2016-07-22)
#### Bug Fixes #### Bug Fixes

View File

@ -22,6 +22,8 @@ from threading import Lock
import six import six
import six
from .Base import BaseFolder from .Base import BaseFolder
class DatabaseFileLock(object): class DatabaseFileLock(object):