Skip to content
Snippets Groups Projects
Commit 305fadca authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

Prepare next release and fix wallet unlock for keyring

Fix wallet unlock when using keyring
parent fa98397a
No related branches found
No related tags found
No related merge requests found
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.24'
version = '0.19.25'
......@@ -190,6 +190,7 @@ class Wallet(object):
elif password_storage == "keyring" and KEYRING_AVAILABLE:
log.debug("Trying to use keyring to unlock wallet")
pwd = keyring.get_password("beem", "wallet")
self.unlock(pwd)
else:
raise WrongMasterPasswordException
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.24'
version = '0.19.25'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.24'
version = '0.19.25'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.24'
version = '0.19.25'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.19.24'
version = '0.19.25'
......@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.19.24'
VERSION = '0.19.25'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment