summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmain.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.py b/main.py
index a60641d7..2cc7e447 100755
--- a/main.py
+++ b/main.py
@@ -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