mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-22 16:42:20 +03:00
do not use lowercase DN - this causes dict problems
This commit is contained in:
parent
cb18b1b7a6
commit
3fc86867ee
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class Registration:
|
||||||
j = json.loads(reg_reply)
|
j = json.loads(reg_reply)
|
||||||
self.logger.debug('[Registration]' + j['message'])
|
self.logger.debug('[Registration]' + j['message'])
|
||||||
status = str(j['status']).lower()
|
status = str(j['status']).lower()
|
||||||
dn = str(j['agentDn']).lower()
|
dn = str(j['agentDn'])
|
||||||
|
|
||||||
self.logger.debug('[Registration] Registration status: ' + str(status))
|
self.logger.debug('[Registration] Registration status: ' + str(status))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue