From: W. Trevor King Date: Thu, 20 Sep 2012 17:33:25 +0000 (-0400) Subject: key: don't pass args to RESULT in lookup_keys(). X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9f615a02aec33baeb3a68c5d0eb30836bc22955c;p=pgp-mime.git key: don't pass args to RESULT in lookup_keys(). --- 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: