diff options
-rwxr-xr-x | main.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -59,6 +59,8 @@ class _Repo(object): | |||
59 | def __init__(self, repodir): | 59 | def __init__(self, repodir): |
60 | self.repodir = repodir | 60 | self.repodir = repodir |
61 | self.commands = all_commands | 61 | self.commands = all_commands |
62 | # add 'branch' as an alias for 'branches' | ||
63 | all_commands['branch'] = all_commands['branches'] | ||
62 | 64 | ||
63 | def _Run(self, argv): | 65 | def _Run(self, argv): |
64 | name = None | 66 | name = None |