Convert scripts to python3
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / python-executor / src / test / resources / scripts / SamplePythonComponentNode.py
index f1b614a..7150e43 100644 (file)
@@ -5,10 +5,10 @@ from blueprint_constants import *
 class SamplePythonComponentNode(AbstractPythonComponentFunction):
 
     def process(self, execution_request):
-        print "Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH
+        print("Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH)
         return None
 
     def recover(self, runtime_exception, execution_request):
-        print "Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH
+        print("Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH)
         return None