From 77aaa1aa8e52b04da9d7a3bb68e7e0a41b197ab8 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Mon, 29 Jun 2015 09:29:21 -0100 Subject: [PATCH] [inferTraceBugs] fix crash on no-longer-needed bucket removal Summary: @public utils.remove_bucket no longer exists and is no longer needed. Test Plan: cd ~/infer/examples infer -- clang -c hello.c inferTraceBugs no longer crashes --- infer/bin/inferTraceBugs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/bin/inferTraceBugs b/infer/bin/inferTraceBugs index b333416fe..b8a20e9b4 100755 --- a/infer/bin/inferTraceBugs +++ b/infer/bin/inferTraceBugs @@ -52,7 +52,7 @@ def describe_report(report, indent=0): kind = report['kind'] line = report['line'] error_type = report['type'] - msg = utils.remove_bucket(report['qualifier']) + msg = report['qualifier'] return '{0}:{1}: {2}: {3}\n {4}{5}\n'.format( filename, line,