From 53a8c59ae53a6643889e79060c487d3fa11a1886 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Tue, 6 Mar 2018 03:08:38 +0000 Subject: [PATCH] parent: Remove redudant os.exit() in first stage SSH command size: 461 (-8 bytes) Preamble size: 8946 (no change) Since python has reached the last statement this should occur anyway. --- mitogen/parent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mitogen/parent.py b/mitogen/parent.py index b3971b80..2ed8a72a 100644 --- a/mitogen/parent.py +++ b/mitogen/parent.py @@ -341,7 +341,6 @@ class Stream(mitogen.core.Stream): os.fdopen(W,'w',0).write(C) os.fdopen(w,'w',0).write('%s\n'%len(C)+C) os.write(1,'EC1\n') - sys.exit(0) def get_boot_command(self): source = inspect.getsource(self._first_stage)