diff --git a/awx/main/models/projects.py b/awx/main/models/projects.py index 5a95c4d648..96785975ae 100644 --- a/awx/main/models/projects.py +++ b/awx/main/models/projects.py @@ -195,7 +195,7 @@ class ProjectOptions(models.Model): if 'tasks' in playbook.split(os.sep): continue results.append(playbook) - return results + return sorted(results, key=lambda x: unicode(x).lower()) class Project(UnifiedJobTemplate, ProjectOptions):