diff options
author | drebs <drebs@leap.se> | 2013-01-31 14:18:09 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-01-31 15:51:14 -0200 |
commit | 02944dc6a5cc1a86273d8737196338224be276d7 (patch) | |
tree | 9a665c95149fb60dc776e4b1fb38508072953f7a /__init__.py | |
parent | b25360e22173a56e468b0285bae616491a1b67ca (diff) |
Add ability to close Soledad instance.
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py index 2ed1a369..c9c981c2 100644 --- a/__init__.py +++ b/__init__.py @@ -41,6 +41,9 @@ class Soledad(object): # for symmetric encryption. self._db = sqlcipher.open(self.LOCAL_DB_PATH, True, self._secret) + def close(self): + self._db.close() + #------------------------------------------------------------------------- # Management of secret for symmetric encryption #------------------------------------------------------------------------- @@ -63,6 +66,7 @@ class Soledad(object): try: with open(self.SECRET_PATH) as f: self._secret = str(self._gpg.decrypt(f.read())) + f.close() except IOError: raise IOError('Failed to open secret file %s.' % self.SECRET_PATH) |