Sort list themes

This commit is contained in:
Yeison 2020-09-19 18:24:01 -05:00
parent 3f44de3fdf
commit 72dfab8247

View File

@ -164,7 +164,7 @@ def list_themes():
themes = os.listdir(os.path.join(
os.path.dirname(os.path.abspath(__file__)), 'themes'))
themes = filter(lambda a: a.endswith('xml'), themes)
return list(themes)
return sorted(list(themes))
########################################################################