[omemo] Fix loading of style.css with python 3.5

This commit is contained in:
Malte Leip
2019-03-16 21:13:24 +01:00
committed by Philipp Hörist
parent 2db6d03fde
commit cfaa259aa7

View File

@@ -139,7 +139,7 @@ class OmemoPlugin(GajimPlugin):
def _load_css():
path = Path(__file__).parent / 'gtk' / 'style.css'
try:
with open(path, "r") as file:
with path.open("r") as file:
css = file.read()
except Exception as exc:
log.error('Error loading css: %s', exc)