From db91fb566cbb965a8e8e5e943204cf8cf8ced086 Mon Sep 17 00:00:00 2001 From: Jari Voutilainen Date: Wed, 20 Aug 2014 10:04:08 +0300 Subject: [PATCH] [#1892] fix inclusion of datasets in group_show --- ckan/controllers/group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/controllers/group.py b/ckan/controllers/group.py index 54f92cb7b7e..491166742ef 100644 --- a/ckan/controllers/group.py +++ b/ckan/controllers/group.py @@ -183,7 +183,7 @@ def read(self, id, limit=20): try: # Do not query for the group datasets when dictizing, as they will # be ignored and get requested on the controller anyway - context['include_datasets'] = False + data_dict['include_datasets'] = False c.group_dict = self._action('group_show')(context, data_dict) c.group = context['group'] except NotFound: