From fcd0379d52f7bf451b30a2ee10acbad985b7df98 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Fri, 26 Feb 2016 03:54:27 -0800 Subject: [PATCH] fix bug that made it crash Summary:public `print(tracer)` has an automatic conversion to string that was missed when migrating to `utils.stdout(tracer)`. Reviewed By: peterogithub Differential Revision: D2982104 fb-gh-sync-id: 4c26727 shipit-source-id: 4c26727 --- infer/lib/python/inferTraceBugs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/lib/python/inferTraceBugs b/infer/lib/python/inferTraceBugs index 8e829afa3..075828cd9 100755 --- a/infer/lib/python/inferTraceBugs +++ b/infer/lib/python/inferTraceBugs @@ -389,7 +389,7 @@ def main(): tracer = Tracer(args, max_level) tracer.build_report(report) - utils.stdout(tracer) + utils.stdout(str(tracer)) if __name__ == '__main__':