From: Tomas Babej Date: Tue, 7 Apr 2015 16:18:36 +0000 (+0200) Subject: pirates: Sort module names alphabetically X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/d0e6afe33606ebb3084b8259c0949db7735167aa pirates: Sort module names alphabetically --- 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 = [] diff --git a/on-modify-pirate b/on-modify-pirate index 018b2ef..8333d3d 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 = []