From 8d7689892819cd990238143fd6d65c0b007b4006 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Mon, 12 Oct 2015 19:33:07 +0200 Subject: [PATCH] Fix for missing parent node_type for groups --- pillar/manage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pillar/manage.py b/pillar/manage.py index e77d8184..ce9bc051 100644 --- a/pillar/manage.py +++ b/pillar/manage.py @@ -516,7 +516,9 @@ def populate_node_types(old_ids={}): node_type_group = { 'name': 'group', 'description': 'Generic group node type', - 'parent': {}, + 'parent': { + 'node_types': ['group', 'project'] + }, 'dyn_schema': { 'url': { 'type': 'string',