From 47eec0b8f9e1e423c3e09ed2a140cf2ceb031179 Mon Sep 17 00:00:00 2001
From: Samuel Gaist <samuel.gaist@idiap.ch>
Date: Thu, 26 Apr 2018 15:01:09 +0200
Subject: [PATCH] [algorithms][migration] Fix print statement

---
 beat/web/algorithms/migrations/0004_algorithm_type.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/beat/web/algorithms/migrations/0004_algorithm_type.py b/beat/web/algorithms/migrations/0004_algorithm_type.py
index dcb560736..c736ba011 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)
-- 
GitLab