From: Tomas Babej Date: Thu, 9 Apr 2015 20:00:50 +0000 (+0200) Subject: find_hooks: Do not allow dots in the module name X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/46968afe470bbaad683b3b35ceada31146768078 find_hooks: Do not allow dots in the module name --- 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