mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-25 14:37:47 +00:00
Show UserError without traceback
This commit is contained in:
parent
9bd490f402
commit
fcb732874d
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ def handle_cli_error(status_name=None):
|
|||
|
||||
try:
|
||||
raise
|
||||
except CliError as e:
|
||||
except (CliError, exceptions.UserError) as e:
|
||||
cli_logger.critical(e)
|
||||
except StorageEmpty as e:
|
||||
cli_logger.error(
|
||||
|
|
|
|||
Loading…
Reference in a new issue