diff rhodecode/lib/vcs/backends/hg/changeset.py @ 2247:99536f257644 beta

#421 bookmarks in changlog view
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 08 May 2012 22:18:46 +0200
parents 49dc09e9f076
children b872bc10f4ec
line wrap: on
line diff
--- a/rhodecode/lib/vcs/backends/hg/changeset.py	Fri May 04 14:13:28 2012 +0200
+++ b/rhodecode/lib/vcs/backends/hg/changeset.py	Tue May 08 22:18:46 2012 +0200
@@ -37,6 +37,10 @@
         return  safe_unicode(self._ctx.branch())
 
     @LazyProperty
+    def bookmarks(self):
+        return map(safe_unicode, self._ctx.bookmarks())
+
+    @LazyProperty
     def message(self):
         return safe_unicode(self._ctx.description())