mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 11:12:16 +03:00
format of registration parameters fixed
This commit is contained in:
parent
37ec0551a9
commit
966e17f241
1 changed files with 2 additions and 2 deletions
|
@ -95,8 +95,8 @@ class Registration():
|
|||
def get_registration_params(self):
|
||||
|
||||
params = {
|
||||
'ipAddresses': System.Hardware.Network.ip_addresses(),
|
||||
'macAddresses': System.Hardware.Network.mac_addresses(),
|
||||
'ipAddresses': str(System.Hardware.Network.ip_addresses()).replace('[', '').replace(']', ''),
|
||||
'macAddresses': str(System.Hardware.Network.mac_addresses()).replace('[', '').replace(']', ''),
|
||||
'hostname': System.Os.hostname(),
|
||||
'os.name': System.Os.name(),
|
||||
'os.version': System.Os.version(),
|
||||
|
|
Loading…
Reference in a new issue