Skip to content

Commit

Permalink
[#262] Fix helper import in controller tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Jan 9, 2013
1 parent b80cddf commit 35f05c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/controllers/tag.py
Expand Up @@ -4,7 +4,7 @@

from ckan.lib.base import *
from ckan.lib.search import query_for
from ckan.lib.helpers import AlphaPage, Page
import ckan.lib.helpers as h

from ckan.logic import NotFound, NotAuthorized
from ckan.logic import check_access, get_action
Expand Down Expand Up @@ -48,7 +48,7 @@ def index(self):
)
c.page.items = results
else:
c.page = AlphaPage(
c.page = h.AlphaPage(
collection=results,
page=request.params.get('page', 'A'),
alpha_attribute='name',
Expand Down

0 comments on commit 35f05c1

Please sign in to comment.