##// END OF EJS Templates
cmdutil: migrate previously missed instances to uipathfn...
Martin von Zweigbergk -
r41813:0cbf491d default
parent child Browse files
Show More
@@ -2193,7 +2193,7 b' def files(ui, ctx, m, fm, fmt, subrepos)'
2193 ret = 0
2193 ret = 0
2194 except error.LookupError:
2194 except error.LookupError:
2195 ui.status(_("skipping missing subrepository: %s\n")
2195 ui.status(_("skipping missing subrepository: %s\n")
2196 % m.rel(subpath))
2196 % uipathfn(subpath))
2197
2197
2198 return ret
2198 return ret
2199
2199
@@ -2825,7 +2825,7 b' def revert(ui, repo, ctx, parents, *pats'
2825 for f in names:
2825 for f in names:
2826 if f.startswith(path_):
2826 if f.startswith(path_):
2827 return
2827 return
2828 ui.warn("%s: %s\n" % (m.rel(path), msg))
2828 ui.warn("%s: %s\n" % (uipathfn(path), msg))
2829
2829
2830 for abs in ctx.walk(matchmod.badmatch(m, badfn)):
2830 for abs in ctx.walk(matchmod.badmatch(m, badfn)):
2831 if abs not in names:
2831 if abs not in names:
General Comments 0
You need to be logged in to leave comments. Login now