From e083fd2fb478bafd60530460d65a28974b9c125d Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sun, 15 Dec 2024 11:38:12 +0100 Subject: [PATCH] Fixed stray newline in URL --- sbapp/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbapp/main.py b/sbapp/main.py index a8034c6..f5745bd 100644 --- a/sbapp/main.py +++ b/sbapp/main.py @@ -3753,11 +3753,11 @@ class SidebandApp(MDApp): else: ipstr = "" for ip in ips: - ipstr += "https://"+str(ip)+":4444/\n" + ipstr += "https://"+str(ip)+":4444/" self.reposository_url = ipstr ms = "" if len(ips) == 1 else "es" - info += "The repository server is running at the following address"+ms+":\n [u][ref=link]"+ipstr+"[/ref][u]" + info += "The repository server is running at the following address"+ms+":\n [u][ref=link]"+ipstr+"[/ref][u]\n" self.repository_screen.ids.repository_info.bind(on_ref_press=self.repository_link_action) def cb(dt):