forked from Shinonome/caelestia-cli
shell: fix log rules arg (#67)
This commit is contained in:
@@ -27,7 +27,7 @@ class Command:
|
|||||||
# Start the shell
|
# Start the shell
|
||||||
args = ["qs", "-c", "caelestia", "-n"]
|
args = ["qs", "-c", "caelestia", "-n"]
|
||||||
if self.args.log_rules:
|
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:
|
if self.args.daemon:
|
||||||
args.append("-d")
|
args.append("-d")
|
||||||
subprocess.run(args)
|
subprocess.run(args)
|
||||||
|
|||||||
Reference in New Issue
Block a user