From 8663b981ace36e23ede9af14d4fe0b9a479ff0bb Mon Sep 17 00:00:00 2001 From: liorblob Date: Wed, 1 Apr 2020 16:07:40 +0300 Subject: [PATCH] Fix the misc dir --- demisto_sdk/commands/common/constants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demisto_sdk/commands/common/constants.py b/demisto_sdk/commands/common/constants.py index 4573fa9870..dbdd796e0a 100644 --- a/demisto_sdk/commands/common/constants.py +++ b/demisto_sdk/commands/common/constants.py @@ -164,6 +164,7 @@ def missing_release_notes(file_path, rn_path): @staticmethod def display_param(param_name, param_display): return 'The display name of the {} parameter should be \'{}\''.format(param_name, param_display) + return 'The display name of the {} parameter should be \'{}\''.format(param_name, param_display) @staticmethod def wrong_file_extension(file_extension, accepted_extensions): @@ -255,7 +256,7 @@ def found_hidden_param(parameter_name): INDICATOR_FIELDS_DIR = 'IndicatorFields' LAYOUTS_DIR = 'Layouts' CLASSIFIERS_DIR = 'Classifiers' -MISC_DIR = 'Packs/Base/Misc' +MISC_DIR = 'Misc' CONNECTIONS_DIR = 'Connections' BETA_INTEGRATIONS_DIR = 'Beta_Integrations' PACKS_DIR = 'Packs'