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