aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-04-13 17:32:32 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-04-13 17:32:32 +0300
commit2b026054acc59337d13ecb49d02d1247455ffe89 (patch)
tree38cf54ce404182d1df8279300e5b47a47604481b /app.py
parentworkflows/ci: deploy to Docker Hub, not to host directly (diff)
downloadvoid-2b026054acc59337d13ecb49d02d1247455ffe89.tar.gz
void-2b026054acc59337d13ecb49d02d1247455ffe89.zip
app.py: print HTTP status when CGIing
Diffstat (limited to 'app.py')
-rwxr-xr-xapp.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app.py b/app.py
index 9498516..1b36f23 100755
--- a/app.py
+++ b/app.py
@@ -34,6 +34,7 @@ class Response:
self.write_body_as_cgi_script()
def write_headers_as_cgi_script(self):
+ print(f'{self.status.value} {self.status.phrase}')
for name, val in self.headers():
print(f'{name}: {val}')
print()