Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
[![Linting](https://img.shields.io/badge/PEP8%20by-Hound%20CI-a873d1.svg)](https://houndci.com)

## Documentation
This repository is a part of the Shotgun Pipeline Toolkit.
This repository is a part of the ShotGrid Pipeline Toolkit.

- For more information about this app and for release notes, *see the wiki section*.
- For general information and documentation, click here: https://support.shotgunsoftware.com/entries/95441257
- For information about Shotgun in general, click here: http://www.shotgunsoftware.com/toolkit
- For information about ShotGrid in general, click here: https://help.autodesk.com/view/SGSUB/ENU/

## Using this app in your Setup
All the apps that are part of our standard app suite are pushed to our App Store.
Expand Down
6 changes: 3 additions & 3 deletions python/command_runner/interact.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def request_input(self, message):
:returns: Information entered by user.
:rtype: str
"""
input, ok = QtGui.QInputDialog.getText(self._parent, "Shotgun", message)
input, ok = QtGui.QInputDialog.getText(self._parent, "ShotGrid", message)
return input

def ask_yn_question(self, message):
Expand All @@ -47,7 +47,7 @@ def ask_yn_question(self, message):
logger.warning("Yn")
res = QtGui.QMessageBox.question(
self._parent,
"Shotgun",
"ShotGrid",
message,
QtGui.QMessageBox.Yes | QtGui.QMessageBox.No,
)
Expand Down Expand Up @@ -75,7 +75,7 @@ def ask_yna_question(self, message, force_prompt=False):

res = QtGui.QMessageBox.question(
self._parent,
"Shotgun",
"ShotGrid",
message,
QtGui.QMessageBox.Yes | QtGui.QMessageBox.YesToAll | QtGui.QMessageBox.No,
)
Expand Down
4 changes: 2 additions & 2 deletions python/create_sandbox/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _process(self):
current_user_data = sgtk.util.get_current_user(self._bundle.sgtk)

# ok we are good to go!
logger.debug("Creating new pipeline config in Shotgun...")
logger.debug("Creating new pipeline config in ShotGrid...")
try:
sg_data = self._bundle.shotgun.create(
"PipelineConfiguration",
Expand All @@ -161,7 +161,7 @@ def _process(self):
# error message
if "PipelineConfiguration cannot be created by this user" in str(e):
raise RuntimeError(
"You do not have permission to create Pipeline Configurations in Shotgun. "
"You do not have permission to create Pipeline Configurations in ShotGrid. "
"Please contact your site administrator."
)
else:
Expand Down