From d0e6afe33606ebb3084b8259c0949db7735167aa Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 7 Apr 2015 18:18:36 +0200 Subject: [PATCH] pirates: Sort module names alphabetically --- on-add-pirate | 1 + on-modify-pirate | 1 + 2 files changed, 2 insertions(+) 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 = [] -- 2.39.2