From 57dfea955e8ada3db7ba6d0d1256c5ad50896159 Mon Sep 17 00:00:00 2001 From: Evence Wang Date: Tue, 4 Nov 2025 07:13:00 -0500 Subject: shell: fix log rules arg (#67) --- src/caelestia/subcommands/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py index 4cdd128..b9e81ed 100644 --- a/src/caelestia/subcommands/shell.py +++ b/src/caelestia/subcommands/shell.py @@ -27,7 +27,7 @@ class Command: # Start the shell args = ["qs", "-c", "caelestia", "-n"] if self.args.log_rules: - args.append("--log-rules", self.args.log_rules) + args.extend(["--log-rules", self.args.log_rules]) if self.args.daemon: args.append("-d") subprocess.run(args) -- cgit v1.2.3-freya