main
Bob Mottram 2020-05-28 10:13:00 +01:00
parent fa6905d850
commit 4d4836fac0
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ def setTheme(baseDir: str, name: str) -> bool:
themes = getThemesList()
for themeName in themes:
if name == themeName.lower():
themeFunctionName = setTheme + themeName
themeFunctionName = 'setTheme' + themeName
themeFunctionName(baseDir)
result = True