From 4cad7462b1e3d59730257482c1a9f83e9578de7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 16 Apr 2019 23:27:05 +0200 Subject: [pgp] Fix key migration --- pgp/backend/store.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'pgp') diff --git a/pgp/backend/store.py b/pgp/backend/store.py index bb094c0..dea8568 100644 --- a/pgp/backend/store.py +++ b/pgp/backend/store.py @@ -50,9 +50,10 @@ class KeyStore: def _migrate(self): keys = {} attached_keys = app.config.get_per( - 'accounts', self._account, 'attached_gpg_keys').split() - if attached_keys is None: + 'accounts', self._account, 'attached_gpg_keys') + if not attached_keys: return + attached_keys = attached_keys.split() for i in range(len(attached_keys) // 2): keys[attached_keys[2 * i]] = attached_keys[2 * i + 1] @@ -64,6 +65,9 @@ class KeyStore: own_key_user = app.config.get_per('accounts', self._account, 'keyname') if own_key_id: self.set_own_key_data((own_key_id, own_key_user)) + + attached_keys = app.config.set_per( + 'accounts', self._account, 'attached_gpg_keys', '') self._log.info('Migration successful') @delay_execution(500) -- cgit v1.2.3