summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-07-16 02:01:30 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-07-16 02:01:30 +0200
commit31ec0564e71e2c3a2b7538d10c7abd4c86853fc0 (patch)
tree2091e22b5a6f76b06bb983c70aa2f852eb6b194b /poezio
parent13b90fb10b20f7c1e34b50c209e9364e78786c9f (diff)
downloadpoezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.tar.gz
poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.tar.bz2
poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.tar.xz
poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.zip
Fix custom theme loading under Python 3.5.
Diffstat (limited to 'poezio')
-rwxr-xr-xpoezio/theming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/theming.py b/poezio/theming.py
index 983020a3..029a9a6c 100755
--- a/poezio/theming.py
+++ b/poezio/theming.py
@@ -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: