> > sphere1, hist = polySphere(name='mySphere') > grp = group(sphere1) > sphere1 > # Result: group1|mySphere #
nothing has changed in his regard. from the beginning, autodesk chose to deviate from standard python practice of using repr() to display results, instead they use str(). this inevitably leads to confusion. here's how you can get what you expect: print repr(sphere1) this prints: nt.Transform(u'group1|mySphere') here's a shorthand for the same thing: print `sphere1` i need to clarify this in the tutorial. -chad -- http://groups.google.com/group/python_inside_maya