Skip to content

Commit 83d9bbe

Browse files
author
thisisnotev
committed
show error on same line
1 parent 11e6f84 commit 83d9bbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aero.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def get_sysctl(name: str) -> str:
477477
stdout=subprocess.PIPE,
478478
stderr=subprocess.PIPE)
479479
if status != 0:
480-
print("`sysctl` failed:")
480+
print("`sysctl` failed: ", end="")
481481
print(stderr.decode())
482482

483483
return stdout.strip().decode()

0 commit comments

Comments
 (0)