Fix some nits in gold.py.

Change-Id: Idfc1c2282cc9318d1135f360ff03d99e27105127
Reviewed-on: https://pdfium-review.googlesource.com/35910
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
diff --git a/testing/tools/gold.py b/testing/tools/gold.py
index 445102f..86aea74 100644
--- a/testing/tools/gold.py
+++ b/testing/tools/gold.py
@@ -74,13 +74,13 @@
     try:
       response = urllib2.urlopen(url, timeout=2)
       c_type = response.headers.get('Content-type', '')
-      if c_type != 'application/json':
+      EXPECTED_CONTENT_TYPE = 'application/json'
+      if c_type != EXPECTED_CONTENT_TYPE:
         raise ValueError('Invalid content type. Got %s instead of %s' % (
-          c_type, 'application/json'))
+            c_type, EXPECTED_CONTENT_TYPE))
       json_data = response.read()
     except (urllib2.HTTPError, urllib2.URLError) as e:
-      print ('Error: Unable to read skia gold json from %s: %s'
-             % (url, e))
+      print ('Error: Unable to read skia gold json from %s: %s' % (url, e))
       return None
 
     try: