Skip to content

Commit

Permalink
Merge branch 'FabiApfelkern-fixing-unqualified-exception-use-in-helpers'
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Sep 10, 2015
2 parents 1621c0a + 26cdebb commit 3526ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/helpers.py
Expand Up @@ -2103,7 +2103,7 @@ def get_organization(org=None, include_datasets=False):
try:
return logic.get_action('organization_show')(
{}, {'id': org, 'include_datasets': include_datasets})
except (NotFound, ValidationError, NotAuthorized):
except (logic.NotFound, logic.ValidationError, logic.NotAuthorized):
return {}


Expand Down

0 comments on commit 3526ff1

Please sign in to comment.