merge-requests/8/head
Bob Mottram 2020-11-14 15:36:05 +00:00
parent 01ede5b1ab
commit b2a481ce75
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ def getThemesList(baseDir: str) -> []:
and to lookup function names
"""
themes = []
for subdir, dirs, files in os.walk(baseDir + '/theme'):
for subdir, dirs, files in next(os.walk(baseDir + '/theme')):
for themeName in dirs:
if '~' not in themeName and themeName != 'icons':
themes.append(themeName.title())