Skip to content

Commit

Permalink
missing space in help text
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-thomm committed Dec 2, 2023
1 parent 12a7cfb commit 43c0afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ryven-editor/ryven/main/Ryven.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def run(*args_,
str_missing_pkgs = ', '.join([str(p.name) for p in pkgs_not_found])
plural = len(pkgs_not_found) > 1
sys.exit(
f'The package{"s" if plural else ""} {str_missing_pkgs}'
f'The package{"s" if plural else ""} {str_missing_pkgs} '
f'{"were" if plural else "was"} requested, '
f'but {"they are" if plural else "it is"} not available.\n'
f'Update the project file or supply the missing package{"s" if plural else ""} '
Expand Down

0 comments on commit 43c0afa

Please sign in to comment.