diff --git a/workflow/run.py b/workflow/run.py
index dd41b7c60df05a34d5d1ca72e1aa05dd38282573..85abb94daaeaff0e88eba350e2d9da641ffca195 100644
--- a/workflow/run.py
+++ b/workflow/run.py
@@ -213,9 +213,9 @@ if __name__ == "__main__":
     hash_outputs = []
     for node in nodes:
         if node.is_finished_ok:
-            print(f"simulation {node} finished successfully")
+            print(f"workflow {node} finished successfully")
         else:
-            print(f"simulation {node} failed with exit code {node.exit_code.status}")
+            print(f"workflow {node} failed with exit code {node.exit_code.status}")
 
         hash_outputs.append(node.outputs.hash_file)
 
diff --git a/workflow/run_workflow_workchain.py b/workflow/run_workflow_workchain.py
index 0faf92845db5d6e3a860cbb46b9109aa98a1be76..5eb511b8a14614537b01cebc72e57a54245ccf16 100644
--- a/workflow/run_workflow_workchain.py
+++ b/workflow/run_workflow_workchain.py
@@ -36,7 +36,6 @@ class RunWorkflowWorkChain(WorkChain):
         spec.input("job_settings", valid_type=Dict)
         spec.outline(cls.clone, cls.test)
         spec.output("remote_folder", valid_type=RemoteData)
-        spec.output("clone_folder", valid_type=RemoteData)
         spec.output("hash_file", valid_type=SinglefileData)
         spec.exit_code(
             400,