comparison rhodecode/lib/vcs/backends/hg/changeset.py @ 3491:bdb997400835 beta

vcs: fix typo in MercurialChangeset.committer It has apparently never been used and could perhaps just be removed. Especially because it also seems suspicious that it will do safe_unicode twice.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 06 Mar 2013 15:40:58 +0100
parents c57a37430dc9
children 0065f7fe60f6
comparison
equal deleted inserted replaced
3490:c0ac34b8eb07 3491:bdb997400835
43 def message(self): 43 def message(self):
44 return safe_unicode(self._ctx.description()) 44 return safe_unicode(self._ctx.description())
45 45
46 @LazyProperty 46 @LazyProperty
47 def commiter(self): 47 def commiter(self):
48 return safe_unicode(self.auhtor) 48 return safe_unicode(self.author)
49 49
50 @LazyProperty 50 @LazyProperty
51 def author(self): 51 def author(self):
52 return safe_unicode(self._ctx.user()) 52 return safe_unicode(self._ctx.user())
53 53