##// END OF EJS Templates
largefiles: reduce OR-ing of same conditions
FUJIWARA Katsunori -
r16074:67a5bc8a default
parent child Browse files
Show More
@@ -546,7 +546,7 b' def override_revert(orig, ui, repo, *pat'
546 match = oldmatch(ctx, pats, opts, globbed, default)
546 match = oldmatch(ctx, pats, opts, globbed, default)
547 m = copy.copy(match)
547 m = copy.copy(match)
548 def tostandin(f):
548 def tostandin(f):
549 if lfutil.standin(f) in ctx or lfutil.standin(f) in ctx:
549 if lfutil.standin(f) in ctx:
550 return lfutil.standin(f)
550 return lfutil.standin(f)
551 elif lfutil.standin(f) in repo[None]:
551 elif lfutil.standin(f) in repo[None]:
552 return None
552 return None
General Comments 0
You need to be logged in to leave comments. Login now