aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
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 096cbfdc..73d29b6a 100644
--- a/src/lib/sos/plugintools.py
+++ b/src/lib/sos/plugintools.py
@@ -354,7 +354,7 @@ class PluginBase:
create a thread which calls the copyStuff method for a plugin
"""
verbosity = self.cInfo['verbosity']
- self.thread = Thread(target=self.copyStuff, name=self.piName+'-thread', args=(verbosity,))
+ self.thread = Thread(target=self.copyStuff, name=self.piName+'-thread')
self.thread.start()
def wait(self):