Skip to content

Commit 1146cc9

Browse files
Fix glitch in command format (#24)
1 parent 97396d5 commit 1146cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/o2tuner/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def run_command(cmd, *, cwd="./", log_file=None, wait=True):
1515
"""
1616
if log_file is None:
1717
log_file = "log.log"
18-
cmd = f"{cmd}>{log_file} 2>&1"
18+
cmd = f"{cmd} >{log_file} 2>&1"
1919
print(f"Running command {cmd}")
2020
proc = psutil.Popen(["/bin/bash", "-c", cmd], cwd=cwd)
2121
if wait:

0 commit comments

Comments
 (0)