Skip to content

Commit

Permalink
Merge pull request #2148 from AnimalLogic/csyshing/fix_python_transla…
Browse files Browse the repository at this point in the history
…tor_export_flag

[al] Fixed incorrect export flag for translator in test plugin
  • Loading branch information
seando-adsk authored Feb 28, 2022
2 parents c474475 + 4c85e98 commit b9f1470
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugin/al/plugin/AL_USDMayaTestPlugin/py/testTranslators.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def tearDown(self, path):
return True

def canExport(self, mayaObjectName):
return False
return usdmaya.ExportFlag.kNotSupported

def needsTransformParent(self):
return True
Expand Down Expand Up @@ -176,7 +176,7 @@ def update(self, prim):
return True

def canExport(self, mayaObjectName):
return False
return usdmaya.ExportFlag.kNotSupported

def exportObject(self, stage, path, usdPath, params):
return
Expand Down Expand Up @@ -221,7 +221,7 @@ def tearDown(self, path):
return True

def canExport(self, mayaObjectName):
return False
return usdmaya.ExportFlag.kNotSupported

def exportObject(self, stage, path, usdPath, params):
return
Expand Down Expand Up @@ -536,7 +536,7 @@ def tearDown(self, path):
return True

def canExport(self, mayaObjectName):
return False
return usdmaya.ExportFlag.kNotSupported

def needsTransformParent(self):
return True
Expand Down

0 comments on commit b9f1470

Please sign in to comment.