Convert scripts to python3
[ccsdk/cds.git] / components / model-catalog / blueprint-model / test-blueprint / capability_python / Scripts / python / SamplePythonComponentNode.py
index 86c9ff1..1ee4182 100755 (executable)
@@ -5,9 +5,9 @@ from blueprint_constants import *
 class SamplePythonComponentNode(JythonComponentFunction):
 
     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