mercurial/hgweb/webutil.py
changeset 50928 d718eddf01d9
parent 50916 98b8836d0e82
child 50929 18c8c18993f0
equal deleted inserted replaced
50927:7a8ea1397816 50928:d718eddf01d9
   209             b'user': s.user(),
   209             b'user': s.user(),
   210             b'date': s.date(),
   210             b'date': s.date(),
   211             b'description': s.description(),
   211             b'description': s.description(),
   212             b'branch': s.branch(),
   212             b'branch': s.branch(),
   213         }
   213         }
   214         if util.safehasattr(s, 'path'):
   214         if hasattr(s, 'path'):
   215             d[b'file'] = s.path()
   215             d[b'file'] = s.path()
   216         yield d
   216         yield d
   217 
   217 
   218 
   218 
   219 def _siblings(siblings=None, hiderev=None):
   219 def _siblings(siblings=None, hiderev=None):