diff --git a/opt/ahenk/base/registration/Registration.py b/opt/ahenk/base/registration/Registration.py index 08d412c..c842783 100644 --- a/opt/ahenk/base/registration/Registration.py +++ b/opt/ahenk/base/registration/Registration.py @@ -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(),