Convert scripts to python3
[ccsdk/cds.git] / components / scripts / python / ccsdk_blueprints / abstract_blueprint_function.py
index a9d4d45..916ef9b 100644 (file)
@@ -7,9 +7,9 @@ class AbstractPythonComponentFunction(AbstractComponentFunction):
         AbstractComponentFunction.__init__(self)
 
     def process(self, execution_request):
-        print "Processing calling from parent..."
+        print("Processing calling from parent...")
         return None
 
     def recover(self, runtime_exception, execution_request):
-        print "Recovering calling from parent..."
+        print("Recovering calling from parent...")
         return None