From 9cf48e629c3c4c2f62f525ace18d2abc2fc40e0d Mon Sep 17 00:00:00 2001 From: Tobin Ehlis Date: Fri, 9 Dec 2016 12:15:26 -0700 Subject: scripts:Make stats script work with python3 Just needed parens around the single print so that the vk_validation_stats.py script will run with python3. --- layers/vk_validation_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/vk_validation_stats.py b/layers/vk_validation_stats.py index fa3819d7..579518d0 100755 --- a/layers/vk_validation_stats.py +++ b/layers/vk_validation_stats.py @@ -73,7 +73,7 @@ class ValidationDatabase: continue db_line = line.split(self.delimiter) if len(db_line) != 6: - print "ERROR: Bad database line doesn't have 6 elements: %s" % (line) + print("ERROR: Bad database line doesn't have 6 elements: %s" % (line)) error_enum = db_line[0] implemented = db_line[1] testname = db_line[2] -- cgit v1.2.3