mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 20:23:12 +00:00
dont raise systemexit on succesful config
This commit is contained in:
parent
31ba235a82
commit
24f7dd9c05
1 changed files with 1 additions and 1 deletions
|
@ -989,7 +989,7 @@ def config(config_options_str: Optional[str]=None,
|
|||
stderr()
|
||||
stderr('[X] These options failed to set (check for typos):', color='red')
|
||||
stderr(' {}'.format('\n '.join(failed_options)))
|
||||
raise SystemExit(bool(failed_options))
|
||||
raise SystemExit(1)
|
||||
elif reset:
|
||||
stderr('[X] This command is not implemented yet.', color='red')
|
||||
stderr(' Please manually remove the relevant lines from your config file:')
|
||||
|
|
Loading…
Reference in a new issue