client registration params reading handled

This commit is contained in:
Serghei Mihai 2015-02-18 10:46:24 +01:00
parent cdd21e6f9e
commit aec1dadb72
1 changed files with 4 additions and 1 deletions

View File

@ -116,7 +116,10 @@ def create_client(**kwargs):
try:
args[param] = kwargs[param]
except KeyError:
args[param] = kwargs['client_registration'][param]
try:
args[param] = kwargs['client_registration'][param]
except KeyError:
pass
else:
_key_set.discard(param)