summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.py b/main.py
index 31a18e18..f068fd47 100755
--- a/main.py
+++ b/main.py
@@ -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