diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-07-16 02:01:30 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-07-16 02:01:30 +0200 |
commit | 31ec0564e71e2c3a2b7538d10c7abd4c86853fc0 (patch) | |
tree | 2091e22b5a6f76b06bb983c70aa2f852eb6b194b | |
parent | 13b90fb10b20f7c1e34b50c209e9364e78786c9f (diff) | |
download | poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.tar.gz poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.tar.bz2 poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.tar.xz poezio-31ec0564e71e2c3a2b7538d10c7abd4c86853fc0.zip |
Fix custom theme loading under Python 3.5.
-rwxr-xr-x | poezio/theming.py | 2 |
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: |