diff options
-rw-r--r-- | src/theming.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theming.py b/src/theming.py index ff2ff74e..96c47337 100644 --- a/src/theming.py +++ b/src/theming.py @@ -271,8 +271,8 @@ def reload_theme(): file_path = os.path.join(themes_dir, theme_name)+'.py' log.debug('Theme file to load: %s' %(file_path,)) new_theme = imp.load_source('theme', os.path.join(themes_dir, theme_name)+'.py') - except: - return 'Theme not found' + except Exception as e: + return 'Failed to load theme: %s' % (e,) theme = new_theme.theme if __name__ == '__main__': |