From bc355d991d7eba0d8d8ec1a8744960eac1466cc2 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sat, 31 Jan 2026 22:09:57 +0000 Subject: [PATCH] Simplified startup box unix socket formatting. --- cista/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cista/__main__.py b/cista/__main__.py index b023549..4f43f07 100644 --- a/cista/__main__.py +++ b/cista/__main__.py @@ -28,7 +28,7 @@ def create_banner(): def create_startup_box(*, folder, url, unix=None, dev=False, paskia_url=None): """Create a framed startup box with server information.""" title = f"Cista {cista.__version__}" - listen = f"{url} ({unix})" if unix else url + listen = unix if unix else url location = f"{folder} @ {listen}" lines = [title, location] if paskia_url: