Check for None path in encrypt_key

pull/35/head
tuxxy 2017-09-06 12:51:31 -06:00
parent e9ce021283
commit d3e5158339
1 changed files with 1 additions and 1 deletions

View File

@ -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: