-
Sorry, I know this is not a bug. But I've been digging around the whole day how to figure this out with no success: I'm getting via the DBUS service on Maybe someone has a hint for me. Thanks in advance and sorry for using the issues for my question :-/ |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
This should do it: import base64
ba = [173, 151, 71, 53, 32, 62, 235, 210, 249, 242, 73, 225, 244, 161, 158, 193, 105, 253, 66, 4, 117, 167, 236, 100, 36, 232, 163, 194, 234, 25, 47, 162]
b = bytes(ba)
gid = base64.b64encode(b).decode()
print(gid) See also #272. |
Beta Was this translation helpful? Give feedback.
-
Out of curiosity, when are you getting this message on dbus? I've started |
Beta Was this translation helpful? Give feedback.
This should do it:
See also #272.