mirror of https://github.com/nucypher/nucypher.git
Check for None path in encrypt_key
parent
e9ce021283
commit
d3e5158339
|
@ -95,7 +95,7 @@ class Client(object):
|
|||
if not pubkey:
|
||||
pubkey = self._pub_key
|
||||
|
||||
if path:
|
||||
if path is not None:
|
||||
enc_keys = []
|
||||
subpaths = self._split_path(path)
|
||||
for subpath in subpaths:
|
||||
|
|
Loading…
Reference in New Issue