hgext/evolve.py
changeset 315 4bbc17716f5a
parent 314 ebd286f06879
child 318 da7509e7b50c
equal deleted inserted replaced
314:ebd286f06879 315:4bbc17716f5a
   678                      _("make graft obsoletes its source")))
   678                      _("make graft obsoletes its source")))
   679 
   679 
   680     # warning about more obsolete
   680     # warning about more obsolete
   681     for cmd in ['commit', 'push', 'pull', 'graft', 'phase', 'unbundle']:
   681     for cmd in ['commit', 'push', 'pull', 'graft', 'phase', 'unbundle']:
   682         entry = extensions.wrapcommand(commands.table, cmd, warnobserrors)
   682         entry = extensions.wrapcommand(commands.table, cmd, warnobserrors)
   683     for cmd in ['kill', 'amend']:
   683     for cmd in ['amend', 'kill', 'uncommit']:
   684         entry = extensions.wrapcommand(cmdtable, cmd, warnobserrors)
   684         entry = extensions.wrapcommand(cmdtable, cmd, warnobserrors)
   685 
   685 
   686     if rebase is not None:
   686     if rebase is not None:
   687         entry = extensions.wrapcommand(rebase.cmdtable, 'rebase', warnobserrors)
   687         entry = extensions.wrapcommand(rebase.cmdtable, 'rebase', warnobserrors)