aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorjwbernin <jwbernin@ef72aa8b-4018-0410-8976-d6e080ef94d8>2007-01-29 00:58:08 +0000
committerjwbernin <jwbernin@ef72aa8b-4018-0410-8976-d6e080ef94d8>2007-01-29 00:58:08 +0000
commit2929ab928af24ce7157836d4341a8b61c8eac042 (patch)
treefd21e6a402db4d20c50cc24ea9b478e18281e111 /src/lib
parentf487724c84b43adc8cb60b8c41db7741d9acc958 (diff)
downloadsos-2929ab928af24ce7157836d4341a8b61c8eac042.tar.gz
Basic KeyboardInterrupt / SIGTERM handling, still needs more development
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@71 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/sos/plugintools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/sos/plugintools.py b/src/lib/sos/plugintools.py
index 8f8de4d8..d3b7a9d7 100644
--- a/src/lib/sos/plugintools.py
+++ b/src/lib/sos/plugintools.py
@@ -29,7 +29,7 @@
This is the base class for sosreport plugins
"""
from sos.helpers import *
-from threading import Thread
+from threading import Thread, activeCount
import os, os.path, sys, string, itertools, glob, re
class PluginBase: