equal
deleted
inserted
replaced
65 for s in siblings: |
65 for s in siblings: |
66 d = {'node': hex(s.node()), 'rev': s.rev()} |
66 d = {'node': hex(s.node()), 'rev': s.rev()} |
67 d['user'] = s.user() |
67 d['user'] = s.user() |
68 d['date'] = s.date() |
68 d['date'] = s.date() |
69 d['description'] = s.description() |
69 d['description'] = s.description() |
|
70 d['branch'] = s.branch() |
70 if hasattr(s, 'path'): |
71 if hasattr(s, 'path'): |
71 d['file'] = s.path() |
72 d['file'] = s.path() |
72 yield d |
73 yield d |
73 |
74 |
74 def parents(ctx, hide=None): |
75 def parents(ctx, hide=None): |