aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2013-04-19 17:16:47 +0100
committerBryn M. Reeves <bmr@redhat.com>2013-04-19 17:16:47 +0100
commit8856596a68fc75ce36cb46b084b05097a4d6f5ff (patch)
tree4f1ffbde3c3e626c93f45c561fa835ca6a39bf39
parentf2203df026a67ae35d67e7f794abac5cb2de7861 (diff)
downloadsos-8856596a68fc75ce36cb46b084b05097a4d6f5ff.tar.gz
Fix regression in exit handling code
Commit ab00491 introduced a duplicate _exit() method with different parameters. Delete it. Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/sosreport.py3
1 files changed, 0 insertions, 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()