diff --git a/bin/nntp-tiny-server b/bin/nntp-tiny-server index 6bc8d91..3a2b37e 100755 --- a/bin/nntp-tiny-server +++ b/bin/nntp-tiny-server @@ -20,4 +20,7 @@ server = Server(config) if args.daemon: Daemon.init(config) -server.run() +try: + server.run() +except KeyboardInterrupt: + pass