[openpgp] Make open call python 3.5 compatible
This commit is contained in:
@@ -84,7 +84,7 @@ class OpenPGPPlugin(GajimPlugin):
|
|||||||
def _load_css(self):
|
def _load_css(self):
|
||||||
path = Path(__file__).parent / 'gtk' / 'style.css'
|
path = Path(__file__).parent / 'gtk' / 'style.css'
|
||||||
try:
|
try:
|
||||||
with open(path, "r") as f:
|
with path.open('r') as f:
|
||||||
css = f.read()
|
css = f.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