Skip to content

Commit

Permalink
EMSUSD-632 fix copyright and other things
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrebai-adsk committed Oct 20, 2023
1 parent e0dd842 commit 106b4eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion plugin/adsk/scripts/AETemplateHelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def SetDefaultPrim(proxyShape, primName):
return True
except Exception as e:
# Note: we do want to tell the user why the set or clear failed.
OpenMaya.MGlobal.displayError((str(e)))
OpenMaya.MGlobal.displayError(str(e))
return False

def GetRootLayerName(proxyShape):
Expand Down
10 changes: 2 additions & 8 deletions test/lib/ufe/testDefaultPrimCmds.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

#
# Copyright 2020 Autodesk
# Copyright 2023 Autodesk
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -19,20 +19,14 @@
import fixturesUtils
import mayaUtils
import testUtils
from testUtils import assertVectorAlmostEqual, assertVectorNotAlmostEqual
import usdUtils
from usdUtils import filterUsdStr

import mayaUsd.ufe

from pxr import UsdGeom, Vt, Gf, Sdf, Usd
from pxr import Sdf

from maya import cmds
from maya import standalone

import ufe

import os
import unittest

class DefaultPrimCmdsTestCase(unittest.TestCase):
Expand Down

0 comments on commit 106b4eb

Please sign in to comment.