summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)