fix typos
This commit is contained in:
parent
e1beff914b
commit
ca91a5512b
@ -14,9 +14,9 @@ class LUSER():
|
||||
|
||||
|
||||
def expandbase(self):
|
||||
'''
|
||||
Extract orgnaization, name of dc object and full domain part with all dc values from base
|
||||
'''
|
||||
'''
|
||||
Extract orgnaization, name of dc object and full domain part with all dc values from base
|
||||
'''
|
||||
# Split base string with commas to find values of organization and dc
|
||||
baselist = self.base.split(",")
|
||||
|
||||
@ -40,12 +40,12 @@ class LUSER():
|
||||
for i in baselist:
|
||||
if i.split('=')[0] == 'dc':
|
||||
# if first dc, add it from dc variable
|
||||
if dcfull == '' and domain='':
|
||||
if dcfull == '' and domain == '':
|
||||
dcfull = f'dc={dc}'
|
||||
domain = dc
|
||||
else:
|
||||
dcfull += ',dc=' + i.split('=')[1]
|
||||
domain += f'.{i.split('=')[1]}'
|
||||
domain += f'.{i.split("=")[1]}'
|
||||
|
||||
return organization, dc, dcfull, domain
|
||||
|
||||
@ -54,7 +54,7 @@ class LUSER():
|
||||
self.admin_user = admin_user
|
||||
self.admin_pass = admin_pass
|
||||
self.base = base
|
||||
self.organization, self.dc, self.dcfull, domain = self.expandbase()
|
||||
self.organization, self.dc, self.dcfull, self.domain = self.expandbase()
|
||||
self.basealt = basealt
|
||||
self.alt = True
|
||||
self.autoconnect = autoconnect
|
||||
|
Loading…
Reference in New Issue
Block a user