From 41fe9b2c83d4a60f0ffde819e2eb842d41cc94f2 Mon Sep 17 00:00:00 2001 From: shnavid Date: Wed, 14 Mar 2007 13:52:56 +0000 Subject: Fixed BZ#219669 (sosreport multi-threaded option sometimes fails) copyStuff() doesn't take any argument git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@93 ef72aa8b-4018-0410-8976-d6e080ef94d8 --- src/lib/sos/plugintools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit