aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpcarrier <pcarrier@ef72aa8b-4018-0410-8976-d6e080ef94d8>2010-11-22 15:44:41 +0000
committerpcarrier <pcarrier@ef72aa8b-4018-0410-8976-d6e080ef94d8>2010-11-22 15:44:41 +0000
commit612836c38fe671369c754e5af44c8b9d19420b7d (patch)
treec8036c6b14d2da55ab57f7ac4e6b227cc980534e
parent9fbfb0619df94ca762e4abf3cb88f069428b83c6 (diff)
downloadsos-612836c38fe671369c754e5af44c8b9d19420b7d.tar.gz
[sos/sosreport.py] Fix the garbage output
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@1017 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rwxr-xr-xsos/sosreport.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sos/sosreport.py b/sos/sosreport.py
index f57c5d48..2b39ed90 100755
--- a/sos/sosreport.py
+++ b/sos/sosreport.py
@@ -716,9 +716,9 @@ No changes will be made to your system.
for i in izip(GlobalVars.loadedplugins):
plugruncount += 1
plugname, plug = i[0]
- sys.stdout.write("\r Running %d/%d: %s... " % (plugruncount,
- len(GlobalVars.loadedplugins),
- plugname))
+ sys.stdout.write("\r Running %d/%d: %s... " % (plugruncount,
+ len(GlobalVars.loadedplugins),
+ plugname))
sys.stdout.flush()
try:
plug.copyStuff()