Hi, 

the arguments need to be seperate strings within a list. How you have it, your 
passing in a list that looks like ["x,y"].  You need your list to look like 
["x","y"]

try something like this:

skipList = ['x']
skipList.append('y')

cmds.pointConstraint( 'sph1', 'sph2', skip=skipList )

-- 
You received this message because you are subscribed to the Google Groups 
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/3e0afeab-d4be-4c15-9dc8-e75e5c193b21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to