diff options
author | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2006-08-10 14:21:56 +0000 |
---|---|---|
committer | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2006-08-10 14:21:56 +0000 |
commit | 8e6eebb2c5bc7019aa29d3a2ceb4b9a90bcba0aa (patch) | |
tree | eb4fb377668a6db6c0a0f280a1ef9c99aea949bb | |
parent | 4204e263be95fda641f41db5242760b28a71b405 (diff) | |
download | sos-8e6eebb2c5bc7019aa29d3a2ceb4b9a90bcba0aa.tar.gz |
Fixed a type
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@38 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rwxr-xr-x | src/sosreport | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sosreport b/src/sosreport index 0b4a2787..7f18ff1d 100755 --- a/src/sosreport +++ b/src/sosreport @@ -221,9 +221,9 @@ def sosreport(): if cmdLineOpts.verbosity > 0: print "Executing plugin %s" % plugname, if cmdLineOpts.multithread: - plug.doCollect(cmdLineOptions.verbosity) + plug.doCollect(cmdLineOpts.verbosity) else: - plug.copyStuff(cmdLineOptions.verbosity) + plug.copyStuff(cmdLineOpts.verbosity) # Wait for all the collection threads to exit for plugname, plug in loadedplugins: |