Skip to content
Snippets Groups Projects
Commit ddc7c572 authored by Jeremy Cline's avatar Jeremy Cline Committed by Masahiro Yamada
Browse files

scripts: Add Python 3 support to tracing/draw_functrace.py


Use the print function. This maintains Python 2 support and should have
no functional change.

Signed-off-by: default avatarJeremy Cline <jcline@redhat.com>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 79a85b55
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ def main():
tree = tree.getParent(caller)
tree = tree.calls(callee, calltime)
print CallTree.ROOT
print(CallTree.ROOT)
if __name__ == "__main__":
main()
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