Correct Python 3 support for some test related scripts

This commit is contained in:
Roland Dobai
2018-09-10 15:04:30 +02:00
committed by bot
parent 91f7a9a9e7
commit da6479e6b7
2 changed files with 2 additions and 62 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
from __future__ import print_function
import yaml
import os
import re
@@ -264,7 +265,7 @@ def main():
parser.copy_module_def_file()
if len(parser.parsing_errors) > 0:
for error in parser.parsing_errors:
print error
print(error)
exit(-1)