Skip to content
Snippets Groups Projects
Commit fc4c598d authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

statprof: fix indent level of fp.write() (issue6004)

It was changed at 9d3034348c4f by mistake.
parent a9e303dc
No related branches found
No related tags found
No related merge requests found
......@@ -704,7 +704,7 @@
# Make frames that didn't actually perform work dark grey
elif node.count - childrensamples == 0:
finalstring = '\033[90m' + finalstring + '\033[0m'
fp.write(finalstring + b'\n')
fp.write(finalstring + b'\n')
newdepth = depth
if len(visiblechildren) > 1 or multiple_siblings:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment