Replace spaces in the topic with underscores (if present)

This commit is contained in:
2025-06-17 20:06:04 -04:00
parent 62d41c54de
commit ef56b6075c

View File

@ -11,4 +11,4 @@ class Address:
addr = self.address
if self.address[len(self.address)-1] != "/":
addr += "/"
return addr + topic
return addr + topic.replace(" ", "_")