Skip to content

Commit

Permalink
Add round bracket to print for py3
Browse files Browse the repository at this point in the history
  • Loading branch information
yanshil authored Jul 28, 2021
1 parent 21c0f64 commit bb4dd77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyblish_maya/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def dock(window):
raise ValueError("Could not find the main Maya window.")

# Deleting existing dock
print "Deleting existing dock..."
print("Deleting existing dock...")
if self._dock:
self._dock.setParent(None)
self._dock.deleteLater()
Expand All @@ -348,7 +348,7 @@ def dock(window):
cmds.deleteUI(self._dock_control)

# Creating new dock
print "Creating new dock..."
print("Creating new dock...")
dock = Dock(parent=main_window)

dock_control = cmds.dockControl(label=window.windowTitle(), area="right",
Expand Down

0 comments on commit bb4dd77

Please sign in to comment.