summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands
diff options
context:
space:
mode:
authorEvence Wang <shjp20070426@gmail.com>2025-11-04 07:13:00 -0500
committerGitHub <noreply@github.com>2025-11-04 23:13:00 +1100
commit57dfea955e8ada3db7ba6d0d1256c5ad50896159 (patch)
treec62a46d0d4f20d0bbb116da6d4faee9a779551a2 /src/caelestia/subcommands
parent[CI] chore: update flake (diff)
downloadcaelestia-cli-57dfea955e8ada3db7ba6d0d1256c5ad50896159.tar.gz
caelestia-cli-57dfea955e8ada3db7ba6d0d1256c5ad50896159.tar.bz2
caelestia-cli-57dfea955e8ada3db7ba6d0d1256c5ad50896159.zip
shell: fix log rules arg (#67)
Diffstat (limited to 'src/caelestia/subcommands')
-rw-r--r--src/caelestia/subcommands/shell.py2
1 files changed, 1 insertions, 1 deletions
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)