From 34c7e3d9d969c60a3a0e748af746dc0b1a923105 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 14 Feb 2020 22:10:44 +0000 Subject: [PATCH] exported command specs, spec.%s -> command-spec.%s --- src/core_modules/command_spec/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core_modules/command_spec/__init__.py b/src/core_modules/command_spec/__init__.py index 85ef6571..d54c433b 100644 --- a/src/core_modules/command_spec/__init__.py +++ b/src/core_modules/command_spec/__init__.py @@ -48,7 +48,8 @@ class Module(ModuleManager.BaseModule): if argument_type.type in types.TYPES: func = types.TYPES[argument_type.type] else: - func = self.exports.get_one("spec.%s" % argument_type.type) + func = self.exports.get_one( + "command-spec.%s" % argument_type.type) if func: try: