##// END OF EJS Templates
Fix misrecognition of commands...
mpm@selenic.com -
r335:74b9332f default
parent child Browse files
Show More
@@ -627,7 +627,7 b' norepo = "init branch help debugindex de'
627 def find(cmd):
627 def find(cmd):
628 i = None
628 i = None
629 for e in table.keys():
629 for e in table.keys():
630 if re.match(e + "$", cmd):
630 if re.match("(%s)$" % e, cmd):
631 return table[e]
631 return table[e]
632
632
633 raise UnknownCommand(cmd)
633 raise UnknownCommand(cmd)
General Comments 0
You need to be logged in to leave comments. Login now