diff --git a/beat/web/algorithms/migrations/0004_algorithm_type.py b/beat/web/algorithms/migrations/0004_algorithm_type.py index dcb560736e15822c96fadd3893c563e7ce080d19..c736ba0119d7e3eb6d23d194ef4ca03b5ee29a1d 100644 --- a/beat/web/algorithms/migrations/0004_algorithm_type.py +++ b/beat/web/algorithms/migrations/0004_algorithm_type.py @@ -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)