pprint this line
diff --git a/specs.py b/specs.py
index 26b0461..f35a89e 100644
--- a/specs.py
+++ b/specs.py
@@ -73,7 +73,7 @@
     pprint("RESULTS:")
     failed = False
     if cpu['count'] < MINIMUM['cpu']:
-        print(u"✗ FAIL: CPU count is %u, expected at least %u!" % (cpu['count'], MINIMUM['cpu']))
+        pprint(u"✗ FAIL: CPU count is %u, expected at least %u!" % (cpu['count'], MINIMUM['cpu']))
         failed = True
     else:
         pprint(u'✓ PASS: CPU count is %u, minimum requirement is %u.' % (cpu['count'], MINIMUM['cpu']))