##// END OF EJS Templates
file-history: hide hidden and obsolete commits
marcink -
r692:9500f918 default
parent child Browse files
Show More
@@ -456,6 +456,10 b' class HgRemote(object):'
456 limit_rev = fctx.rev()
456 limit_rev = fctx.rev()
457 for obj in reversed(list(fctx.filelog())):
457 for obj in reversed(list(fctx.filelog())):
458 obj = fctx.filectx(obj)
458 obj = fctx.filectx(obj)
459 ctx = obj.changectx()
460 if ctx.hidden() or ctx.obsolete():
461 continue
462
459 if limit_rev >= obj.rev():
463 if limit_rev >= obj.rev():
460 yield obj
464 yield obj
461
465
General Comments 0
You need to be logged in to leave comments. Login now