diff --git a/bitwarden_pyro/util/config.py b/bitwarden_pyro/util/config.py index 0aa1f47..9978e83 100644 --- a/bitwarden_pyro/util/config.py +++ b/bitwarden_pyro/util/config.py @@ -160,7 +160,7 @@ def __flatten_config(self, config, parent_key='', sep='.'): items = [] for key, value in config.items(): new_key = parent_key + sep + key if parent_key else key - if isinstance(value, collections.MutableMapping): + if isinstance(value, collections.abc.MutableMapping): items.extend( self.__flatten_config( value, new_key, sep=sep diff --git a/setup.py b/setup.py index fd3cf82..a656a57 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open('README.md', encoding='utf-8') as f: long_description = f.read() -setuptools.setup(name='bitwarden_pyro', +setuptools.setup(name='bitwarden-pyro', version=VERSION, description='Bitwarden python interface built with Rofi', url='https://github.com/mihalea/bitwarden-pyro',