flatpak-coredumpctl: Make use of periods consistent in help messages

Help messages were inconsistent about whether they ended with periods or
not. I chose to remove the periods from those that had them rather than
the other way around because the help messages automatically generated
by argparse do not have periods.
This commit is contained in:
Mia McMahill
2026-06-16 16:10:50 -05:00
committed by Sebastian Wick
parent 32698f1e60
commit aef5cf91a3

View File

@@ -102,11 +102,11 @@ if __name__ == "__main__":
parser.add_argument("--extra-flatpak-args", default="",
help="Extra argument to pass to flatpak")
parser.add_argument("app", nargs="?",
help="The flatpak application to use. eg. `org.gnome.Epiphany//3.28`.")
help="The flatpak application to use. eg. `org.gnome.Epiphany//3.28`")
parser.add_argument("-m", "--coredumpctl-matches", default="",
help="Coredumpctl matches, see `man coredumpctl` for more information.")
help="Coredumpctl matches, see `man coredumpctl` for more information")
parser.add_argument("--gdb-arguments", default="",
help="Arguments to pass to gdb.")
help="Arguments to pass to gdb")
args = parser.parse_args()
try: