Convert scripts to python3
[ccsdk/cds.git] / components / scripts / python / ccsdk_blueprints / sample_ra_processor_function.py
index fa82108..5e78981 100644 (file)
@@ -1,14 +1,14 @@
-from abstract_ra_processor import AbstractRAProcessor
-from blueprint_constants import *
+from .abstract_ra_processor import AbstractRAProcessor
+from .blueprint_constants import *
 
 
 class SampleRAProcessorFunction(AbstractRAProcessor):
 
     def process(self, resource_assignment):
-        print "Processing calling.." + PROPERTY_BLUEPRINT_BASE_PATH
+        print("Processing calling.." + PROPERTY_BLUEPRINT_BASE_PATH)
         self.set_resource_data_value(resource_assignment, "")
         return None
 
     def recover(self, runtime_exception, resource_assignment):
-        print "Recovering calling.." + PROPERTY_BLUEPRINT_BASE_PATH
+        print("Recovering calling.." + PROPERTY_BLUEPRINT_BASE_PATH)
         return None