[pgp] Fix uid encoding on linux
This commit is contained in:
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user