Commit d234ad7f authored by Brenden Blanco's avatar Brenden Blanco

Add decode() to ascii string in offcputime.py

Fixes: #318
Signed-off-by: default avatarBrenden Blanco <bblanco@plumgrid.com>
parent d38d3f19
......@@ -186,7 +186,7 @@ while (1):
for k, v in sorted(counts.items(), key=lambda counts: counts[1].value):
if folded:
# print folded stack output
line = k.name + ";"
line = k.name.decode() + ";"
for i in reversed(range(0, maxdepth)):
if k.ret[i] == 0:
continue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment