Changeset - bdb997400835
[Not reviewed]
beta
0 1 0
Mads Kiilerich - 13 years ago 2013-03-06 15:40:58
madski@unity3d.com
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.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/vcs/backends/hg/changeset.py
Show inline comments
 
@@ -42,13 +42,13 @@ class MercurialChangeset(BaseChangeset):
 
    @LazyProperty
 
    def message(self):
 
        return safe_unicode(self._ctx.description())
 

	
 
    @LazyProperty
 
    def commiter(self):
 
        return safe_unicode(self.auhtor)
 
        return safe_unicode(self.author)
 

	
 
    @LazyProperty
 
    def author(self):
 
        return safe_unicode(self._ctx.user())
 

	
 
    @LazyProperty
0 comments (0 inline, 0 general)