Skip to content

Commit

Permalink
Update create_shot.py
Browse files Browse the repository at this point in the history
updating print statement to match python 3.x syntax
  • Loading branch information
santosg87 authored May 18, 2023
1 parent 2f3e6f2 commit 32cbaf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/al/tutorials/endToEndMaya/scripts/create_shot.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _CreateShot(shotName, shotDir, baseLayer):

from pxr import Usd, UsdGeom
shotStage = Usd.Stage.CreateNew(shotFilePath)
print "Creating shot at %s" % shotFilePath
print("Creating shot at %s" % shotFilePath)

_CreateAndAddSubLayers(shotStage, shotName, shotDir, [
'./%s_sim.usd' % shotName,
Expand Down

0 comments on commit 32cbaf3

Please sign in to comment.