Skip to content

Commit

Permalink
Improved error message for missing dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
  • Loading branch information
olehermanse committed Jan 9, 2025
1 parent 536f0a3 commit 2ed0519
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cfbs/man_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
try:
from build_manpages.manpage import Manpage
except ImportError:
user_error("'Manpage' dependency not satisfied")
user_error(
"Missing dependency, install from PyPI: 'pip install argparse-manpage setuptools'"
)


def generate_man_page():
Expand Down

0 comments on commit 2ed0519

Please sign in to comment.