How does one pass a user parameter to a pythonCaller that's inside a customTransformer
import fme
import fmeobjects
Â
def processFeature(feature):
    p = FME_MacroValuesÂ'SomeUserParameter']
    print pÂ
I read here "If you put your pythonCaller inside a custom transformer, the parameter name changes to {customTransformerName}_SomeUserParameter. "
I tried then doing this below but still does not work.
import fmeÂ
import fmeobjects Â
def processFeature(feature):
     p = FME_MacroValuesr'{customTransformerName}_SomeUserParameter']    Â
     print pÂ
What am I doing wrong?
Â