comparison rhodecode/lib/vcs/backends/hg/changeset.py @ 3492:0065f7fe60f6 beta

fix spelling of committer
author Mads Kiilerich <madski@unity3d.com>
date Wed, 06 Mar 2013 19:54:36 +0100
parents bdb997400835
children 58905069da21
comparison
equal deleted inserted replaced
3491:bdb997400835 3492:0065f7fe60f6
42 @LazyProperty 42 @LazyProperty
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 committer(self):
48 return safe_unicode(self.author) 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())