From c8362dfd43fda191d357b83d395fba247c6f03a8 Mon Sep 17 00:00:00 2001 From: Ankur Sinha (Ankur Sinha Gmail) Date: Mar 15 2022 18:33:25 +0000 Subject: docs: tweak usage docs for fedora-create-review --- diff --git a/src/FedoraReview/create_review.py b/src/FedoraReview/create_review.py index 0ed4e52..50074f8 100644 --- a/src/FedoraReview/create_review.py +++ b/src/FedoraReview/create_review.py @@ -455,7 +455,12 @@ def setup_parser(): """ Set the command line arguments. """ - parser = argparse.ArgumentParser(prog="fedora-create-review") + parser = argparse.ArgumentParser( + prog="fedora-create-review", + description="Create a new Fedora package review ticket", + epilog="Please see `man fedora-create-review` for more information, such as how to use the configuration file.\n\n Please file bugs, feature requests, and pull requests at https://pagure.io/FedoraReview/." + + ) # General connection options parser.add_argument("specfile", help="Path to the spec file") parser.add_argument("srpmfile", help="Path to the src.rpm file")