mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-13 04:32:16 +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)
|
||||
self.logger.debug('[Registration]' + j['message'])
|
||||
status = str(j['status']).lower()
|
||||
dn = str(j['agentDn']).lower()
|
||||
dn = str(j['agentDn'])
|
||||
|
||||
self.logger.debug('[Registration] Registration status: ' + str(status))
|
||||
|
||||
|
|
Loading…
Reference in a new issue