Some minor from 'pep8', and silencing the PEP8 messages I don't care about.

Also make pep8 show all messages rather than just 1 per code.
This commit is contained in:
Michael DeHaan 2012-03-02 22:03:03 -05:00
parent 0d7a84d591
commit 3ad9db4966
5 changed files with 32 additions and 24 deletions

View file

@ -74,11 +74,11 @@ def command_generic_msg(hostname, result, oneline, caption):
if not oneline:
buf = "%s | %s | rc=%s >>\n" % (hostname, caption, result.get('rc',0))
if stdout:
buf += stdout
buf += stdout
if stderr:
buf += stderr
buf += stderr
if msg:
buf += msg
buf += msg
return buf
else:
if stderr: