diff --git a/pywraps/py_ua.py b/pywraps/py_ua.py index ccee1f3..3daaee3 100644 --- a/pywraps/py_ua.py +++ b/pywraps/py_ua.py @@ -485,7 +485,7 @@ class processor_t(pyidc_opaque_object_t): short processor names similar to the one in ph.psnames. This method can be overridden to return to the kernel a different IDP description. """ - return '\x01'.join(map(lambda t: '\x01'.join(t), zip(self.plnames, self.psnames))) + return self.plnames[0] + ':' + ':'.join(self.psnames) def get_uFlag(self): """Use this utility function to retrieve the 'uFlag' global variable""" diff --git a/swig/ua.i b/swig/ua.i index 7a7a827..c1a45e9 100644 --- a/swig/ua.i +++ b/swig/ua.i @@ -1449,7 +1449,7 @@ class processor_t(pyidc_opaque_object_t): short processor names similar to the one in ph.psnames. This method can be overridden to return to the kernel a different IDP description. """ - return '\x01'.join(map(lambda t: '\x01'.join(t), zip(self.plnames, self.psnames))) + return self.plnames[0] + ':' + ':'.join(self.psnames) def get_uFlag(self): """Use this utility function to retrieve the 'uFlag' global variable"""