Skip to content
Snippets Groups Projects
Commit bcff6210 authored by Kim Kulling's avatar Kim Kulling
Browse files

Regression test: fix deprecated python print call.

parent b694bfd0
No related branches found
No related tags found
No related merge requests found
......@@ -264,7 +264,7 @@ def del_folder_with_contents(folder):
def run_test():
tmp_target_path = os.path.join(settings.results, "tmp")
try:
print "try to make " + tmp_target_path
print( "try to make " + tmp_target_path )
os.mkdir(tmp_target_path)
except OSError as oerr:
# clear contents if tmp folder exists already
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment