[pgp] Fix uid encoding on linux

This commit is contained in:
André Apitzsch
2023-04-15 14:32:47 +02:00
parent debcc20ee9
commit ceeb13d58c

View File

@@ -15,6 +15,7 @@
# along with PGP Gajim Plugin. If not, see <http://www.gnu.org/licenses/>. # along with PGP Gajim Plugin. If not, see <http://www.gnu.org/licenses/>.
import os import os
import sys
import logging import logging
from functools import partial from functools import partial
from packaging.version import Version as V from packaging.version import Version as V
@@ -101,7 +102,8 @@ class PGPPlugin(GajimPlugin):
self._on_file_encryption_error), self._on_file_encryption_error),
} }
self._pgp = PGP(BINARY) encoding = 'utf8' if sys.platform == 'linux' else None
self._pgp = PGP(BINARY, encoding=encoding)
@staticmethod @staticmethod
def get_pgp_module(account): def get_pgp_module(account):