diff --git a/beat/backend/python/executor.py b/beat/backend/python/executor.py
index 040ccfde06e7a28488a296187004cdced56eec7a..1825e6144f8dd68db039acaaf04a55bc713fb2a5 100644
--- a/beat/backend/python/executor.py
+++ b/beat/backend/python/executor.py
@@ -117,7 +117,6 @@ class Executor(object):
             databases = database_cache
 
         if self.algorithm.type == Algorithm.LEGACY:
-            print(self.data)
             # Loads algorithm inputs
             (self.input_list, self.data_loaders) = create_inputs_from_configuration(
                 self.data, self.algorithm, self.prefix, cache_root,
diff --git a/beat/backend/python/helpers.py b/beat/backend/python/helpers.py
index 8b084d6581c7e53599c93f2ebd2daea361aa2b87..0233db77549ab669bd50edbb19b2cc91dfa3df7b 100644
--- a/beat/backend/python/helpers.py
+++ b/beat/backend/python/helpers.py
@@ -295,7 +295,7 @@ def create_inputs_from_configuration(config, algorithm, prefix, cache_root,
                 else:
                     _create_data_source(details)
 
-            else: # Algorithm.AUTONOMOUS or LOOP:
+            else: # Algorithm autonomous types
                 _create_data_source(details)
 
         else: