summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-09-29 11:08:58 -0400
committerSimo Sorce <simo@redhat.com>2015-10-19 12:16:45 -0400
commit18178ce292ae2f88528c7e6256c9956ec9ebf896 (patch)
treee9fabfb7d9a4461233da2d8c0a57797ab0cb5150
parent72c9ad1546223ad0aa22bceb8c9b57f885519c9d (diff)
downloadcustodia-18178ce292ae2f88528c7e6256c9956ec9ebf896.tar.gz
custodia-18178ce292ae2f88528c7e6256c9956ec9ebf896.tar.xz
custodia-18178ce292ae2f88528c7e6256c9956ec9ebf896.zip
Fix pep8 issues
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Christian Heimes <cheimes@redhat.com>
-rw-r--r--custodia/message/kem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/custodia/message/kem.py b/custodia/message/kem.py
index 489f657..c1bd31f 100644
--- a/custodia/message/kem.py
+++ b/custodia/message/kem.py
@@ -202,7 +202,7 @@ class KEMClient(object):
self.server_keys = server_keys
self.client_keys = client_keys
- def make_request(self, name, value = None, alg = "RS256", encalg = None):
+ def make_request(self, name, value=None, alg="RS256", encalg=None):
if encalg is None:
return make_sig_kem(name, value,
self.client_keys[KEY_USAGE_SIG], alg)