X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/34b3fe8edd2a93a6e7d97c5096fdc364ad580b14..46968afe470bbaad683b3b35ceada31146768078:/on-modify-pirate diff --git a/on-modify-pirate b/on-modify-pirate index 018b2ef..0fc38e5 100755 --- a/on-modify-pirate +++ b/on-modify-pirate @@ -11,6 +11,7 @@ def find_hooks(file_prefix): # Find all files in subdirectories whose names start with file_pattern = os.path.dirname(__file__) + '/*/' + file_prefix + "*.py" module_paths = [f for f in glob.glob(file_pattern) if os.path.isfile(f)] + module_paths.sort() # Gather all hooks in these files hooks = [] @@ -20,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