From d3639c53d56feaea81474ffd28395a124744dab7 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 25 Feb 2020 15:12:37 -0500 Subject: subcmds: centralize all_commands logic The branch->branches alias is setup in the main module when that really belongs in the existing all_commands setup. For help, rather than monkey patching all_commands to the class, switch it to use the state directly from the module. This makes it a bit more obvious where it's coming from rather than this one subcommand having a |commands| member added externally to it. Change-Id: I0200def09bf4774cad8012af0f4ae60ea3089dc0 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/259153 Tested-by: Mike Frysinger Reviewed-by: David Pursehouse --- main.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 98234cbf..b309fad3 100755 --- a/main.py +++ b/main.py @@ -135,8 +135,6 @@ class _Repo(object): def __init__(self, repodir): self.repodir = repodir self.commands = all_commands - # add 'branch' as an alias for 'branches' - all_commands['branch'] = all_commands['branches'] def _ParseArgs(self, argv): """Parse the main `repo` command line options.""" -- cgit v1.2.3-54-g00ecf