From a0ce7a634bc38e4fa334d6aa203d93a7dece60e1 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 12 Aug 2017 12:05:20 +0200 Subject: [PATCH] [enh] microdecision: allow subcategories to have a '-' in their name --- moulinette/actionsmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moulinette/actionsmap.py b/moulinette/actionsmap.py index cd58b880..9e1468f1 100644 --- a/moulinette/actionsmap.py +++ b/moulinette/actionsmap.py @@ -458,7 +458,7 @@ class ActionsMap(object): # Retrieve action information if len(tid) == 4: namespace, category, subcategory, action = tid - func_name = '%s_%s_%s' % (category, subcategory, action.replace('-', '_')) + func_name = '%s_%s_%s' % (category, subcategory.replace('-', '_'), action.replace('-', '_')) full_action_name = "%s.%s.%s.%s" % (namespace, category, subcategory, action) else: assert len(tid) == 3