X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/9e8162008613c2f2ca7f6908587cca84ac5cd42b..d0e6afe33606ebb3084b8259c0949db7735167aa:/on-add-pirate diff --git a/on-add-pirate b/on-add-pirate index 8d123ed..558132c 100755 --- a/on-add-pirate +++ b/on-add-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 = []