Merge "sm-dump output not formatted properly"

This commit is contained in:
Zuul 2019-06-13 15:06:53 +00:00 committed by Gerrit Code Review
commit ae0a96cac9
1 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ def main():
if args.impact:
msg += "%-10s" % (row[6])
if args.pid:
msg += "%-7s" % (pid if pid > 0 else '')
msg += "%-8s" % (pid if pid > 0 else '')
if args.pn:
msg += "%-20s" % (pn)
if args.pid_file:
@ -172,7 +172,7 @@ def main():
if args.impact:
msg += "%-10s" % (row[5])
if args.pid:
msg += "%-7s" % (pid if pid > 0 else '')
msg += "%-8s" % (pid if pid > 0 else '')
if args.pn:
msg += "%-20s" % (pn)
if args.pid_file: