diff rhodecode/controllers/changelog.py @ 4035:4627bc2dc8be

fixed typo in __get_cs_or_redirect method
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 25 Jun 2013 20:25:40 +0200
parents 4a0bce848ed8
children 4fb3a7286e7b
line wrap: on
line diff
--- a/rhodecode/controllers/changelog.py	Tue Jun 25 19:45:55 2013 +0200
+++ b/rhodecode/controllers/changelog.py	Tue Jun 25 20:25:40 2013 +0200
@@ -155,7 +155,7 @@
                 except (NodeDoesNotExistError, ChangesetError):
                     #this node is not present at tip !
                     try:
-                        cs = self.__get_css_or_redirect(revision, repo_name)
+                        cs = self.__get_cs_or_redirect(revision, repo_name)
                         collection = cs.get_file_history(f_path)
                     except RepositoryError, e:
                         h.flash(str(e), category='warning')