diff options
author | mathieui <mathieui@mathieui.net> | 2013-08-10 01:50:03 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-08-10 01:50:03 +0200 |
commit | 518f933fb848848e91456474fb52c153854de95f (patch) | |
tree | c3d7557d78bc7831f3a969af913b799ad57117c3 /src/theming.py | |
parent | 64c1a09023298e75eed0b2a0e736d1422f7f46b7 (diff) | |
download | poezio-518f933fb848848e91456474fb52c153854de95f.tar.gz poezio-518f933fb848848e91456474fb52c153854de95f.tar.bz2 poezio-518f933fb848848e91456474fb52c153854de95f.tar.xz poezio-518f933fb848848e91456474fb52c153854de95f.zip |
Fix #2343
Diffstat (limited to 'src/theming.py')
-rw-r--r-- | src/theming.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theming.py b/src/theming.py index dd42342c..d62b47ae 100644 --- a/src/theming.py +++ b/src/theming.py @@ -451,7 +451,7 @@ def reload_theme(): log.error('Failed to load the theme %s', theme_name, exc_info=True) exc = e finally: - if version_info[1] < 3: + if version_info[1] < 3 and imp.lock_held(): imp.release_lock() if not new_theme: |