aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/sos/plugintools.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/sos/plugintools.py b/src/lib/sos/plugintools.py
index d67f17a4..c09fc801 100644
--- a/src/lib/sos/plugintools.py
+++ b/src/lib/sos/plugintools.py
@@ -267,14 +267,14 @@ class PluginBase:
self.customText = self.customText + text
return
- def doCollect(self):
- self.thread = Thread(target=self.copyStuff,name=self.piName+'-thread')
+ def doCollect(self, verbosity):
+ self.thread = Thread(target=self.copyStuff,name=self.piName+'-thread',args=(verbosity,))
self.thread.start()
def wait(self):
self.thread.join()
- def copyStuff(self):
+ def copyStuff(self, verbosity):
for path in self.copyPaths:
try:
self.doCopyFileOrDir(path)
@@ -301,7 +301,7 @@ class PluginBase:
"""
pass
- def analyze(self):
+ def analyze(self, verbosity):
pass
def postproc(self, dstroot):