Skip to content

Commit

Permalink
[#819] Fix code error on abort in user controller
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Apr 24, 2013
1 parent 0c8fd56 commit 8cbdd31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/controllers/user.py
Expand Up @@ -533,7 +533,7 @@ def display_name(followee):
action_functions.get(filter_type))
# Is this a valid type?
if action_function is None:
raise abort(404, _('Follow item not found'))
abort(404, _('Follow item not found'))
try:
followee = action_function(context, data_dict)
except NotFound:
Expand Down

0 comments on commit 8cbdd31

Please sign in to comment.