6 lines
128 B
Python
6 lines
128 B
Python
import maya.api.OpenMaya as om
|
|
|
|
|
|
def cPexcept(excepstr=""):
|
|
om.MGlobal.displayError(excepstr)
|
|
return Exception(excepstr) |