From a1cd770d566400364c43acd40b980a7138820797 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 20 Apr 2021 23:38:04 -0400 Subject: help/version: sprinkle bug report URL around Make it a bit easier for people to locate bug reporting info. Change-Id: If9c8939c84ebd52eb96b353c1797afa25868bb85 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/303943 Tested-by: Mike Frysinger Reviewed-by: Raman Tenneti --- subcmds/help.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'subcmds/help.py') diff --git a/subcmds/help.py b/subcmds/help.py index 6a767e6f..0989b999 100644 --- a/subcmds/help.py +++ b/subcmds/help.py @@ -20,6 +20,7 @@ from subcmds import all_commands from color import Coloring from command import PagedCommand, MirrorSafeCommand, GitcAvailableCommand, GitcClientCommand import gitc_utils +from wrapper import Wrapper class Help(PagedCommand, MirrorSafeCommand): @@ -78,6 +79,7 @@ Displays detailed usage information about a command. print( "See 'repo help ' for more information on a specific command.\n" "See 'repo help --all' for a complete list of recognized commands.") + print('Bug reports:', Wrapper().BUG_URL) def _PrintCommandHelp(self, cmd, header_prefix=''): class _Out(Coloring): -- cgit v1.2.3-54-g00ecf