From 46968afe470bbaad683b3b35ceada31146768078 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 9 Apr 2015 22:00:50 +0200 Subject: [PATCH] find_hooks: Do not allow dots in the module name --- on-add-pirate | 1 + on-modify-pirate | 1 + 2 files changed, 2 insertions(+) diff --git a/on-add-pirate b/on-add-pirate index 558132c..635ca26 100755 --- a/on-add-pirate +++ b/on-add-pirate @@ -21,6 +21,7 @@ def find_hooks(file_prefix): module_dir = os.path.dirname(module_path) module_filename = os.path.basename(module_path) module_name = 'pirate_{0}_{1}'.format(module_dir, module_filename) + module_name = module_name.replace('.', '_') module = imp.load_source(module_name, module_path) # Find all hook methods available diff --git a/on-modify-pirate b/on-modify-pirate index 8333d3d..0fc38e5 100755 --- a/on-modify-pirate +++ b/on-modify-pirate @@ -21,6 +21,7 @@ def find_hooks(file_prefix): module_dir = os.path.dirname(module_path) module_filename = os.path.basename(module_path) module_name = 'pirate_{0}_{1}'.format(module_dir, module_filename) + module_name = module_name.replace('.', '_') module = imp.load_source(module_name, module_path) # Find all hook methods available -- 2.39.2