[omemo] Fix loading of style.css with python 3.5
This commit is contained in:
committed by
Philipp Hörist
parent
2db6d03fde
commit
cfaa259aa7
@@ -139,7 +139,7 @@ class OmemoPlugin(GajimPlugin):
|
|||||||
def _load_css():
|
def _load_css():
|
||||||
path = Path(__file__).parent / 'gtk' / 'style.css'
|
path = Path(__file__).parent / 'gtk' / 'style.css'
|
||||||
try:
|
try:
|
||||||
with open(path, "r") as file:
|
with path.open("r") as file:
|
||||||
css = file.read()
|
css = file.read()
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
log.error('Error loading css: %s', exc)
|
log.error('Error loading css: %s', exc)
|
||||||
|
|||||||
Reference in New Issue
Block a user