##// END OF EJS Templates
show: also catch AmbiguousCommand...
Gregory Szorc -
r33207:b93df142 default
parent child Browse files
Show More
@@ -233,7 +233,7 b' def showstack(ui, repo, displayer):'
233 try:
233 try:
234 cmdutil.findcmd('rebase', commands.table)
234 cmdutil.findcmd('rebase', commands.table)
235 haverebase = True
235 haverebase = True
236 except error.UnknownCommand:
236 except (error.AmbiguousCommand, error.UnknownCommand):
237 haverebase = False
237 haverebase = False
238
238
239 # TODO use templating.
239 # TODO use templating.
General Comments 0
You need to be logged in to leave comments. Login now