Skip to content

Commit bc0d30c

Browse files
zamu5Sergio Zamudio
andauthored
sg-22648-shotgrid replace shotgun instances (#4)
Co-authored-by: Sergio Zamudio <sergio.zamudio@autodesk.com>
1 parent 5c4a9d6 commit bc0d30c

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
[![Linting](https://img.shields.io/badge/PEP8%20by-Hound%20CI-a873d1.svg)](https://houndci.com)
44

55
## Documentation
6-
This repository is a part of the Shotgun Pipeline Toolkit.
6+
This repository is a part of the ShotGrid Pipeline Toolkit.
77

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

1212
## Using this app in your Setup
1313
All the apps that are part of our standard app suite are pushed to our App Store.

python/command_runner/interact.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def request_input(self, message):
3434
:returns: Information entered by user.
3535
:rtype: str
3636
"""
37-
input, ok = QtGui.QInputDialog.getText(self._parent, "Shotgun", message)
37+
input, ok = QtGui.QInputDialog.getText(self._parent, "ShotGrid", message)
3838
return input
3939

4040
def ask_yn_question(self, message):
@@ -47,7 +47,7 @@ def ask_yn_question(self, message):
4747
logger.warning("Yn")
4848
res = QtGui.QMessageBox.question(
4949
self._parent,
50-
"Shotgun",
50+
"ShotGrid",
5151
message,
5252
QtGui.QMessageBox.Yes | QtGui.QMessageBox.No,
5353
)
@@ -75,7 +75,7 @@ def ask_yna_question(self, message, force_prompt=False):
7575

7676
res = QtGui.QMessageBox.question(
7777
self._parent,
78-
"Shotgun",
78+
"ShotGrid",
7979
message,
8080
QtGui.QMessageBox.Yes | QtGui.QMessageBox.YesToAll | QtGui.QMessageBox.No,
8181
)

python/create_sandbox/dialog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def _process(self):
140140
current_user_data = sgtk.util.get_current_user(self._bundle.sgtk)
141141

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

0 commit comments

Comments
 (0)