From 8856596a68fc75ce36cb46b084b05097a4d6f5ff Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 19 Apr 2013 17:16:47 +0100 Subject: Fix regression in exit handling code Commit ab00491 introduced a duplicate _exit() method with different parameters. Delete it. Signed-off-by: Bryn M. Reeves --- sos/sosreport.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sos/sosreport.py b/sos/sosreport.py index b3f0409d..9a72b142 100644 --- a/sos/sosreport.py +++ b/sos/sosreport.py @@ -285,9 +285,6 @@ class SoSReport(object): raise SystemExit() # sys.exit(error) - def _exit(self): - self._exit(1) - def get_exit_handler(self): def exit_handler(signum, frame): self._exit() -- cgit