We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54a3065 commit 3be765bCopy full SHA for 3be765b
pubweb/config.py
@@ -42,7 +42,7 @@ def get_config_path() -> Path:
42
43
def save_config(auth_config: AuthConfig):
44
ini_config = configparser.SafeConfigParser()
45
- ini_config['DEFAULT'] = auth_config.__dict__
+ ini_config['DEFAULT'] = auth_config._asdict()
46
config_path = get_config_path()
47
config_path.parent.mkdir(exist_ok=True)
48
with config_path.open('w') as configfile:
setup.py
@@ -33,7 +33,7 @@
33
34
setup(
35
name='pubweb',
36
- version='0.3.1',
+ version='0.3.2',
37
author='Fred Hutch',
38
license='MIT',
39
author_email='[email protected]',
0 commit comments