Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2020-11-22 02:05:04 +0300
committerlovetox <philipp@hoerist.com>2020-11-22 02:05:04 +0300
commite4a88c9d18ec8cd4733ad2395d3d5fbe7ac54a21 (patch)
treef46e1e0a2c3a7f823c3198510fbc6f3369f49c2b
parent2fa94478f0feb7a193cd067ac86a2dc342669319 (diff)
[openpgp] Fix error logging
Fixes #446
-rw-r--r--openpgp/backend/pygpg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/backend/pygpg.py b/openpgp/backend/pygpg.py
index 81bf7fe..85d824c 100644
--- a/openpgp/backend/pygpg.py
+++ b/openpgp/backend/pygpg.py
@@ -114,7 +114,7 @@ class PythonGnuPG(gnupg.GPG):
result = super().import_keys(data)
if not result:
log.error('Could not import key')
- log.error(result.results[0])
+ log.error(result)
return
if not self.validate_key(data, str(jid)):