[openpgp] Make open call python 3.5 compatible

This commit is contained in:
Philipp Hörist
2019-03-16 22:55:37 +01:00
parent 15d35ed8d1
commit bfd96caddf

View File

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