mercurial/hgweb/webutil.py
changeset 50580 f30ce3558c2b
parent 49284 d44e3c45f0e4
child 50916 98b8836d0e82
equal deleted inserted replaced
50579:b08aed45ef00 50580:f30ce3558c2b
   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, b'path'):
   214         if util.safehasattr(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):