hgext/fastannotate/context.py
branchstable
changeset 43421 be384a2052aa
parent 43105 649d3ac37a12
child 44062 2d49482d0dd4
equal deleted inserted replaced
43420:93aeebc90ff9 43421:be384a2052aa
    55         pl = [p for p in pl if p.path() == f.path()]
    55         pl = [p for p in pl if p.path() == f.path()]
    56 
    56 
    57     # renamed filectx won't have a filelog yet, so set it
    57     # renamed filectx won't have a filelog yet, so set it
    58     # from the cache to save time
    58     # from the cache to save time
    59     for p in pl:
    59     for p in pl:
    60         if not b'_filelog' in p.__dict__:
    60         if not '_filelog' in p.__dict__:
    61             p._filelog = _getflog(f._repo, p.path())
    61             p._filelog = _getflog(f._repo, p.path())
    62 
    62 
    63     return pl
    63     return pl
    64 
    64 
    65 
    65