Fixed stray newline in URL
This commit is contained in:
parent
426c9d9617
commit
e083fd2fb4
|
@ -3753,11 +3753,11 @@ class SidebandApp(MDApp):
|
||||||
else:
|
else:
|
||||||
ipstr = ""
|
ipstr = ""
|
||||||
for ip in ips:
|
for ip in ips:
|
||||||
ipstr += "https://"+str(ip)+":4444/\n"
|
ipstr += "https://"+str(ip)+":4444/"
|
||||||
self.reposository_url = ipstr
|
self.reposository_url = ipstr
|
||||||
|
|
||||||
ms = "" if len(ips) == 1 else "es"
|
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)
|
self.repository_screen.ids.repository_info.bind(on_ref_press=self.repository_link_action)
|
||||||
|
|
||||||
def cb(dt):
|
def cb(dt):
|
||||||
|
|
Loading…
Reference in New Issue