From 9f615a02aec33baeb3a68c5d0eb30836bc22955c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 20 Sep 2012 13:33:25 -0400 Subject: [PATCH] key: don't pass args to RESULT in lookup_keys(). --- pgp_mime/key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgp_mime/key.py b/pgp_mime/key.py index 0b5812d..aa735bf 100644 --- a/pgp_mime/key.py +++ b/pgp_mime/key.py @@ -54,7 +54,7 @@ def lookup_keys(patterns=None, load=False): _crypt.hello(client) if load: client.make_request(_common.Request('KEYLIST', *args)) - rs,result = client.make_request(_common.Request('RESULT', *args)) + rs,result = client.make_request(_common.Request('RESULT')) else: rs,result = client.make_request(_common.Request('KEYLIST', *args)) finally: -- 2.26.2