diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-03-14 13:52:56 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-03-14 13:52:56 +0000 |
commit | 41fe9b2c83d4a60f0ffde819e2eb842d41cc94f2 (patch) | |
tree | 2466d091914b68e11512f3d90fcde1eb182a8176 /src | |
parent | b7e6157cfab8e7f5f36fcce9ed6d197993c0b17e (diff) | |
download | sos-41fe9b2c83d4a60f0ffde819e2eb842d41cc94f2.tar.gz |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/sos/plugintools.py | 2 |
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): |