Regression test: fix deprecated python print call.

pull/704/head
Kim Kulling 2015-12-08 21:33:08 +01:00
parent b694bfd021
commit bcff6210b3
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ def del_folder_with_contents(folder):
def run_test(): def run_test():
tmp_target_path = os.path.join(settings.results, "tmp") tmp_target_path = os.path.join(settings.results, "tmp")
try: try:
print "try to make " + tmp_target_path print( "try to make " + tmp_target_path )
os.mkdir(tmp_target_path) os.mkdir(tmp_target_path)
except OSError as oerr: except OSError as oerr:
# clear contents if tmp folder exists already # clear contents if tmp folder exists already