X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=components%2Fscripts%2Fpython%2Fccsdk_blueprints%2Fsample_ra_processor_function.py;fp=components%2Fscripts%2Fpython%2Fccsdk_blueprints%2Fsample_ra_processor_function.py;h=5e789815be0f0cffd501f0b2d5a659b3c8ad2b4b;hb=2593494642c8f425f5e6897241312006563797b1;hp=fa821082e704f8f12378400a7c75f07b60fb7aa4;hpb=5e9a1da4ef37b6b47ba428325478b79466d7d181;p=ccsdk%2Fcds.git diff --git a/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py b/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py index fa821082e..5e789815b 100644 --- a/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py +++ b/components/scripts/python/ccsdk_blueprints/sample_ra_processor_function.py @@ -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