From 25da63c011fd3301620512bd708bdea71d2ddd5f Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Fri, 23 Nov 2012 04:03:25 +0100 Subject: [PATCH] =?UTF-8?q?On=20utilise=20l'identifiant=20de=20cl=C3=A9=20?= =?UTF-8?q?plut=C3=B4t=20que=20l'adresse=20mail=20pour=20savoir=20quelle?= =?UTF-8?q?=20cl=C3=A9=20utiliser.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cranspasswords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranspasswords.py b/cranspasswords.py index 123fa00..9129c07 100755 --- a/cranspasswords.py +++ b/cranspasswords.py @@ -155,7 +155,7 @@ def encrypt(roles, contents): email, key = allkeys[recipient] if key: email_recipients.append("-r") - email_recipients.append(email) + email_recipients.append(key) stdin, stdout = gpg("encrypt", email_recipients) stdin.write(contents)