Skip to content

Commit

Permalink
db: Add a missing space to a usage message
Browse files Browse the repository at this point in the history
  • Loading branch information
spbnick committed Dec 11, 2023
1 parent 15af3fc commit f8364de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kcidb/db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def argparse_add_args(parser, database=None):
help=("Specify DATABASE to use, formatted as <DRIVER>:<PARAMS>. " +
"Use --database-help for more details." +
("" if database is None
else f"Default is {database!r}.")),
else f" Default is {database!r}.")),
default=database,
required=(database is None)
)
Expand Down

0 comments on commit f8364de

Please sign in to comment.