Added forgotten AttributeError

This commit is contained in:
Dmitri Bogomolov 2019-02-07 18:07:21 +02:00
parent a4235df86b
commit 093ecb8f49
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -136,7 +136,7 @@ class Keystore(object):
content, plugin = self.config.safeGet(
'bitmessagesettings', 'keystore').split(':')
plugin = get_plugin('keystore', name=plugin)(self)
except (ValueError, TypeError):
except (ValueError, TypeError, AttributeError):
plugin = None
if not plugin: