diff --git a/rhodecode/controllers/admin/repos_groups.py b/rhodecode/controllers/admin/repos_groups.py --- a/rhodecode/controllers/admin/repos_groups.py +++ b/rhodecode/controllers/admin/repos_groups.py @@ -9,6 +9,7 @@ from rhodecode.model.db import Group log = logging.getLogger(__name__) + class ReposGroupsController(BaseController): """REST Controller styled on the Atom Publishing Protocol""" # To properly map this controller, ensure your config/routing.py @@ -68,7 +69,6 @@ class ReposGroupsController(BaseControll sort_key = current_sort_slug + '_sort' - #overwrite our cached list with current filter gr_filter = [r.repo_name for r in c.group_repos] c.cached_repo_list = self.scm_model.get_repos(all_repos=gr_filter) @@ -82,10 +82,8 @@ class ReposGroupsController(BaseControll c.repo_cnt = len(c.repos_list) - return render('admin/repos_groups/repos_groups.html') - def edit(self, id, format='html'): """GET /repos_groups/id/edit: Form to edit an existing item""" # url('edit_repos_group', id=ID)