Python moBu- changing name of ControlRig

Ok so i found out how to change the name of the control rig:

for character in FBSystem().Scene.Characters:
    contrSet=character.GetCurrentControlSet()
    contrSet.LongName="namespace"
    
    print contrSet.LongName

^^

Thank you. Always a good one to know.