From aa7b9af501d169d43f4690e6076a5925a1b4b015 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 12 Jul 2015 08:13:09 +0200 Subject: [PATCH] minor fix --- lib/paymentrequest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/paymentrequest.py b/lib/paymentrequest.py index eae982f1..012e7e09 100644 --- a/lib/paymentrequest.py +++ b/lib/paymentrequest.py @@ -352,6 +352,7 @@ def make_request(config, req, alias=None, alias_privkey=None): pr = make_unsigned_request(req) key_path = config.get('ssl_privkey') cert_path = config.get('ssl_chain') + requestor = None if key_path and cert_path: sign_request_with_x509(pr, key_path, cert_path)