Asciiabetize the files within a group

pull/3562/head
Jimmy Brisson 2017-01-10 15:18:42 -06:00
parent 4d6918bd27
commit 36e5fbf136
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ class Uvision(Exporter):
"""Make sources into the named tuple for use in the template"""
grouped = self.group_project_files(srcs)
for group, files in sorted(grouped.items()):
grouped[group] = self.uv_files(files)
grouped[group] = sorted(list(self.uv_files(files)))
return grouped
def generate(self):