Fix process-graph.py after #698787, take 2
After the Python 3 conversion, there is now an extra space in the output. This shows the problem: >>> print "a\n", "b" a b >>> from __future__ import print_function >>> print("a\n", "b") a b Fix it by specifying sep="". TBR=thakis Bug: 1007195 Change-Id: I20fea51951d552fcffee4704bd515c54bb84ef63 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1821598Reviewed-by:Hans Wennborg <hans@chromium.org> Cr-Commit-Position: refs/heads/master@{#699286}
Showing
Please register or sign in to comment