# HG changeset patch # User Dirkjan Ochtman # Date 2009-01-26 14:52:10 # Node ID f9ba30cb7ee4faddf82b837479fa8bb8f2254517 # Parent 4ad12930a4591892f99c3903c4359071b893391b hgweb: expose sibling branches to templater diff --git a/mercurial/hgweb/webutil.py b/mercurial/hgweb/webutil.py --- a/mercurial/hgweb/webutil.py +++ b/mercurial/hgweb/webutil.py @@ -67,6 +67,7 @@ def _siblings(siblings=[], hiderev=None) d['user'] = s.user() d['date'] = s.date() d['description'] = s.description() + d['branch'] = s.branch() if hasattr(s, 'path'): d['file'] = s.path() yield d