[analyzer] [tests] Fix 80 column violation in SATestBuild.py

llvm-svn: 336022
diff --git a/clang/utils/analyzer/SATestBuild.py b/clang/utils/analyzer/SATestBuild.py
index 3137b48..00f3bd8 100755
--- a/clang/utils/analyzer/SATestBuild.py
+++ b/clang/utils/analyzer/SATestBuild.py
@@ -274,13 +274,13 @@
     SBOptions += "-plist-html -o '%s' " % SBOutputDir
     SBOptions += "-enable-checker " + AllCheckers + " "
     SBOptions += "--keep-empty "
-    AnalyzerConfig = {
-        "stable-report-filename": "true",
-        "serialize-stats": "true"
-    }
+    AnalyzerConfig = [
+        ("stable-report-filename", "true"),
+        ("serialize-stats", "true"),
+    ]
 
     SBOptions += "-analyzer-config '%s' " % (
-        ",".join("%s=%s" % (key, value) for key, value in AnalyzerConfig.iteritems()))
+        ",".join("%s=%s" % (key, value) for (key, value) in AnalyzerConfig))
 
     # Always use ccc-analyze to ensure that we can locate the failures
     # directory.