##// END OF EJS Templates
scmutil: replace 'ctx._repo' with 'ctx.repo()'
Matt Harbison -
r24338:ca136507 default
parent child Browse files
Show More
@@ -723,7 +723,7 b' def matchandpats(ctx, pats=[], opts={}, '
723 723 m = ctx.match(pats, opts.get('include'), opts.get('exclude'),
724 724 default)
725 725 def badfn(f, msg):
726 ctx._repo.ui.warn("%s: %s\n" % (m.rel(f), msg))
726 ctx.repo().ui.warn("%s: %s\n" % (m.rel(f), msg))
727 727 m.bad = badfn
728 728 return m, pats
729 729
General Comments 0
You need to be logged in to leave comments. Login now