mercurial/cmdutil.py
changeset 30497 002fa4d79466
parent 30494 c1149533676b
child 30506 d9d8d78e6bc9
equal deleted inserted replaced
30496:a90867a22daf 30497:002fa4d79466
  3406             return func
  3406             return func
  3407         return decorator
  3407         return decorator
  3408 
  3408 
  3409     return cmd
  3409     return cmd
  3410 
  3410 
  3411 checkunresolved = mergeutil.checkunresolved
  3411 def checkunresolved(ms):
       
  3412     ms._repo.ui.deprecwarn('checkunresolved moved from cmdutil to mergeutil',
       
  3413                            '4.1')
       
  3414     return mergeutil.checkunresolved(ms)
  3412 
  3415 
  3413 # a list of (ui, repo, otherpeer, opts, missing) functions called by
  3416 # a list of (ui, repo, otherpeer, opts, missing) functions called by
  3414 # commands.outgoing.  "missing" is "missing" of the result of
  3417 # commands.outgoing.  "missing" is "missing" of the result of
  3415 # "findcommonoutgoing()"
  3418 # "findcommonoutgoing()"
  3416 outgoinghooks = util.hooks()
  3419 outgoinghooks = util.hooks()