summaryrefslogtreecommitdiffstats
path: root/.local/bin/http-static
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-x.local/bin/http-static5
1 files changed, 1 insertions, 4 deletions
diff --git a/.local/bin/http-static b/.local/bin/http-static
index 1d49eb7..9b189cc 100755
--- a/.local/bin/http-static
+++ b/.local/bin/http-static
@@ -37,10 +37,7 @@ def main(argv: Optional[Sequence[str]] = None) -> None:
)
args = parser.parse_args(argv)
- try:
- serve(**vars(args))
- except KeyboardInterrupt:
- pass
+ serve(**vars(args))
if __name__ == "__main__":