diff options
| author | Tobin Ehlis <tobine@google.com> | 2016-12-09 12:15:26 -0700 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-12-09 14:57:04 -0700 |
| commit | 9cf48e629c3c4c2f62f525ace18d2abc2fc40e0d (patch) | |
| tree | 85d7f5dcde53e50e13d29146f374e6a01a6f3cf0 /layers/vk_validation_stats.py | |
| parent | b865dba33a08a95f65281c77e464c1333fb28e2c (diff) | |
| download | usermoji-9cf48e629c3c4c2f62f525ace18d2abc2fc40e0d.tar.xz | |
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.
Diffstat (limited to 'layers/vk_validation_stats.py')
| -rwxr-xr-x | layers/vk_validation_stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
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] |
