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

fix spelling of committer
author Mads Kiilerich <madski@unity3d.com>
date Wed, 06 Mar 2013 19:54:36 +0100
parents 951aa2741c98
children 58905069da21
comparison
equal deleted inserted replaced
3491:bdb997400835 3492:0065f7fe60f6
452 452
453 """ 453 """
454 raise NotImplementedError 454 raise NotImplementedError
455 455
456 @LazyProperty 456 @LazyProperty
457 def commiter(self): 457 def committer(self):
458 """ 458 """
459 Returns Commiter for given commit 459 Returns Committer for given commit
460 """ 460 """
461 461
462 raise NotImplementedError 462 raise NotImplementedError
463 463
464 @LazyProperty 464 @LazyProperty
465 def commiter_name(self): 465 def committer_name(self):
466 """ 466 """
467 Returns Author name for given commit 467 Returns Author name for given commit
468 """ 468 """
469 469
470 return author_name(self.commiter) 470 return author_name(self.committer)
471 471
472 @LazyProperty 472 @LazyProperty
473 def commiter_email(self): 473 def committer_email(self):
474 """ 474 """
475 Returns Author email address for given commit 475 Returns Author email address for given commit
476 """ 476 """
477 477
478 return author_email(self.commiter) 478 return author_email(self.committer)
479 479
480 @LazyProperty 480 @LazyProperty
481 def author(self): 481 def author(self):
482 """ 482 """
483 Returns Author for given commit 483 Returns Author for given commit