From 813b67ab2014e829304ebc2dabe2a467214238bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Fri, 12 Aug 2022 02:20:32 +0200 Subject: [PATCH] changed break to exit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- pc-client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pc-client/main.py b/pc-client/main.py index b293ba1..8bfbc75 100644 --- a/pc-client/main.py +++ b/pc-client/main.py @@ -19,4 +19,4 @@ while True: output.replace("\r\n", "") print(output.decode("ASCII")) except KeyboardInterrupt: - break \ No newline at end of file + exit() \ No newline at end of file