##// END OF EJS Templates
largefiles: replace 'ctx._repo' with 'ctx.repo()'
Matt Harbison -
r24336:c9f4ef96 default
parent child Browse files
Show More
@@ -388,7 +388,7 b' def synclfdirstate(repo, lfdirstate, lfi'
388 lfdirstate.drop(lfile)
388 lfdirstate.drop(lfile)
389
389
390 def markcommitted(orig, ctx, node):
390 def markcommitted(orig, ctx, node):
391 repo = ctx._repo
391 repo = ctx.repo()
392
392
393 orig(node)
393 orig(node)
394
394
@@ -760,7 +760,7 b' def overriderevert(orig, ui, repo, *pats'
760 # currently doesn't work correctly in that case, this match is
760 # currently doesn't work correctly in that case, this match is
761 # called, so the lfdirstate above may not be the correct one for
761 # called, so the lfdirstate above may not be the correct one for
762 # this invocation of match.
762 # this invocation of match.
763 lfdirstate = lfutil.openlfdirstate(ctx._repo.ui, ctx._repo, False)
763 lfdirstate = lfutil.openlfdirstate(ctx.repo().ui, ctx.repo(), False)
764
764
765 def tostandin(f):
765 def tostandin(f):
766 if lfutil.standin(f) in ctx:
766 if lfutil.standin(f) in ctx:
General Comments 0
You need to be logged in to leave comments. Login now