hgext/histedit.py
changeset 42981 b4093d1d3b18
parent 42979 699102b10530
child 43076 2372284d9457
equal deleted inserted replaced
42980:e3bb2a58af1e 42981:b4093d1d3b18
  1984         try:
  1984         try:
  1985             mergemod.calculateupdates(
  1985             mergemod.calculateupdates(
  1986                 repo, wctx, c, ancs,
  1986                 repo, wctx, c, ancs,
  1987                 # These parameters were determined by print-debugging
  1987                 # These parameters were determined by print-debugging
  1988                 # what happens later on inside histedit.
  1988                 # what happens later on inside histedit.
  1989                 False, # branchmerge
  1989                 branchmerge=False, force=False, acceptremote=False,
  1990                 False, # force
  1990                 followcopies=False)
  1991                 False, # acceptremote
       
  1992                 False, # followcopies
       
  1993             )
       
  1994         except error.Abort:
  1991         except error.Abort:
  1995             raise error.Abort(
  1992             raise error.Abort(
  1996        _("untracked files in working directory conflict with files in %s") % (
  1993        _("untracked files in working directory conflict with files in %s") % (
  1997            c))
  1994            c))
  1998 
  1995