Skip to content

Commit

Permalink
Fix for checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan committed May 22, 2017
1 parent 464f869 commit 58f69c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/logic/action/get.py
Expand Up @@ -369,7 +369,7 @@ def _group_or_org_list(context, data_dict, is_org=False):
.filter(model.Member.state == 'active') \
.filter(model.Member.table_name == 'package') \
.filter(model.Package.state == 'active') \
.filter(model.Package.private == 'FALSE')
.filter(model.Package.private == False)
else:
query = model.Session.query(model.Group.id,
model.Group.name)
Expand Down

0 comments on commit 58f69c3

Please sign in to comment.