From ef56b6075c268f0015a180b5098c9dbdb4e66c1d Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Tue, 17 Jun 2025 20:06:04 -0400 Subject: [PATCH] Replace spaces in the topic with underscores (if present) --- src/address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/address.py b/src/address.py index 1531122..cebb3ee 100644 --- a/src/address.py +++ b/src/address.py @@ -11,4 +11,4 @@ class Address: addr = self.address if self.address[len(self.address)-1] != "/": addr += "/" - return addr + topic \ No newline at end of file + return addr + topic.replace(" ", "_") \ No newline at end of file