Skip to content

Commit

Permalink
chore: rename shelf (#120)
Browse files Browse the repository at this point in the history
Signed-off-by: lucaseck <[email protected]>
  • Loading branch information
lucaseck authored Mar 21, 2024
1 parent fe7ec04 commit d3f9e1d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion maya_submitter_plugin/plug-ins/DeadlineCloudForMaya.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# Tells maya which version of their api to use.
maya_useNewAPI = True
VENDOR = "AWS Thinkbox"
VENDOR = "AWS"
VERSION = "0.6.0"

__log__ = logging.getLogger("Deadline")
Expand Down
4 changes: 2 additions & 2 deletions src/deadline/maya_submitter/shelf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

"""
Creates or updates the Deadline shelf.
Creates or updates the AWS Deadline shelf.
"""
import os
from contextlib import contextmanager
Expand Down Expand Up @@ -60,7 +60,7 @@ def build_shelf() -> None:
"""
Builds the Deadline Maya Shelf.
"""
shelf_name = "Deadline"
shelf_name = "AWSDeadline"

with _saved_shelf_selection() as g_shelf_top_level:
# Create the Deadline shelf tab if it doesn't exist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class VersionMatcher:
def __eq__(self, other: Any) -> bool:
return bool(VersionMatcher.VERSION_REGEX.match(other))

mock_MFnPlugin.assert_called_once_with(plugin, "AWS Thinkbox", VersionMatcher())
mock_MFnPlugin.assert_called_once_with(plugin, "AWS", VersionMatcher())

plugin_obj.registerCommand.assert_called_once_with(
"DeadlineCloudSubmitter", mel_commands.DeadlineCloudSubmitterCmd
Expand Down

0 comments on commit d3f9e1d

Please sign in to comment.