Fix custom theme loading under Python 3.5.
This commit is contained in:
parent
13b90fb10b
commit
31ec0564e7
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ def update_themes_dir(option=None, value=None):
|
|||
except OSError:
|
||||
log.exception('Unable to create the themes dir (%s):', themes_dir)
|
||||
else:
|
||||
load_path.append(themes_dir)
|
||||
load_path.append(str(themes_dir))
|
||||
|
||||
# system-wide import
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue