Skip to content
Snippets Groups Projects
Commit 47eec0b8 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[algorithms][migration] Fix print statement

parent ebda1f46
No related branches found
No related tags found
2 merge requests!2551.4.x,!242Py3 compatibility
......@@ -20,7 +20,7 @@ def determine_types(apps, schema_editor):
print("Determining type of algorithm '%s/%s/%d'..." % \
(algorithm.author.username, algorithm.name, algorithm.version))
print algorithm.declaration_file.path
print(algorithm.declaration_file.path)
with open(algorithm.declaration_file.path, 'r') as f:
declaration = simplejson.load(f)
......
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