[PATCH 1/2] aurweb.spawn: Support stdout redirections to non-tty
Frédéric Mangano-Tarumi
fmang at mg0.fr
Mon Jul 27 12:43:48 UTC 2020
Only ttys have a terminal size. If we can’t obtain it, we’ll just use 80
as a sane default.
---
aurweb/spawn.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/aurweb/spawn.py b/aurweb/spawn.py
index 5da8587e..46d534d9 100644
--- a/aurweb/spawn.py
+++ b/aurweb/spawn.py
@@ -87,12 +87,16 @@ def start():
return
atexit.register(stop)
+ try:
+ terminal_width = os.get_terminal_size().columns
+ except OSError:
+ terminal_width = 80
print("{ruler}\n"
"Spawing PHP and FastAPI, then nginx as a reverse proxy.\n"
"Check out {aur_location}\n"
"Hit ^C to terminate everything.\n"
"{ruler}"
- .format(ruler=("-" * os.get_terminal_size().columns),
+ .format(ruler=("-" * terminal_width),
aur_location=aurweb.config.get('options', 'aur_location')))
# PHP
--
2.27.0
More information about the aur-dev
mailing list