From 44b577a17800499f54943fa01e095e515f79fac0 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Wed, 24 Sep 2025 10:34:05 +0200 Subject: [PATCH] Use Path.joinpath smarter. --- ircplom/client_tui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ircplom/client_tui.py b/ircplom/client_tui.py index 400c294..dbdd498 100644 --- a/ircplom/client_tui.py +++ b/ircplom/client_tui.py @@ -25,8 +25,7 @@ _LOG_PREFIX_SERVER = '$' _LOG_PREFIX_OUT = '>' _LOG_PREFIX_IN = '<' -_PATH_LOGS = Path.home().joinpath('.local').joinpath('share')\ - .joinpath('ircplom').joinpath('logs') +_PATH_LOGS = Path.home().joinpath('.local', 'share', 'ircplom', 'logs') class _LogScope(Enum): -- 2.30.2