X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=components%2Fmodel-catalog%2Fblueprint-model%2Ftest-blueprint%2Fbaseconfiguration%2FScripts%2Fpython%2FSamplePythonComponentNode.py;fp=components%2Fmodel-catalog%2Fblueprint-model%2Ftest-blueprint%2Fbaseconfiguration%2FScripts%2Fpython%2FSamplePythonComponentNode.py;h=1ee41825dcc3297a4804ae754e31de4ff18e4309;hb=2593494642c8f425f5e6897241312006563797b1;hp=86c9ff141f7df977460fcbc4c71515b90085ff5e;hpb=5e9a1da4ef37b6b47ba428325478b79466d7d181;p=ccsdk%2Fcds.git diff --git a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Scripts/python/SamplePythonComponentNode.py b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Scripts/python/SamplePythonComponentNode.py index 86c9ff141..1ee41825d 100644 --- a/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Scripts/python/SamplePythonComponentNode.py +++ b/components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Scripts/python/SamplePythonComponentNode.py @@ -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