diff 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
line wrap: on
line diff
--- a/rhodecode/lib/vcs/backends/hg/changeset.py	Wed Mar 06 18:47:59 2013 +0100
+++ b/rhodecode/lib/vcs/backends/hg/changeset.py	Wed Mar 06 15:40:58 2013 +0100
@@ -45,7 +45,7 @@
 
     @LazyProperty
     def commiter(self):
-        return safe_unicode(self.auhtor)
+        return safe_unicode(self.author)
 
     @LazyProperty
     def author(self):