diff options
Diffstat (limited to 'src/dh_xul-ext')
-rwxr-xr-x | src/dh_xul-ext | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dh_xul-ext b/src/dh_xul-ext index 3abaa8c..876d43e 100755 --- a/src/dh_xul-ext +++ b/src/dh_xul-ext @@ -104,7 +104,8 @@ def get_xul_apps(script_name, all_distros): vendor = get_vendor() data_dir = _get_data_dir() if all_distros or vendor == "all": - csv_filenames = glob.glob(os.path.join(data_dir, "xul-app-data.csv.*")) + csv_filenames = sorted(glob.glob(os.path.join(data_dir, + "xul-app-data.csv.*"))) else: csv_filename = os.path.join(data_dir, "xul-app-data.csv." + vendor) if not os.path.isfile(csv_filename): |