mercurial/scmutil.py
changeset 41685 b81ecf3571d5
parent 41684 a8d3a4be066e
child 41697 e21183db2259
equal deleted inserted replaced
41684:a8d3a4be066e 41685:b81ecf3571d5
  1123             repo.ui.status(status)
  1123             repo.ui.status(status)
  1124 
  1124 
  1125     # TODO: We should probably have the caller pass in uipathfn and apply it to
  1125     # TODO: We should probably have the caller pass in uipathfn and apply it to
  1126     # the messages above too. forcerelativevalue=True is consistent with how
  1126     # the messages above too. forcerelativevalue=True is consistent with how
  1127     # it used to work.
  1127     # it used to work.
  1128     uipathfn = getuipathfn(repo, forcerelativevalue=True)
  1128     uipathfn = getuipathfn(repo, legacyrelativevalue=True)
  1129     renames = _findrenames(repo, m, added + unknown, removed + deleted,
  1129     renames = _findrenames(repo, m, added + unknown, removed + deleted,
  1130                            similarity, uipathfn)
  1130                            similarity, uipathfn)
  1131 
  1131 
  1132     _markchanges(repo, unknown + forgotten, deleted, renames)
  1132     _markchanges(repo, unknown + forgotten, deleted, renames)
  1133 
  1133