diff --git a/python/tk_multi_snapshot/snapshot.py b/python/tk_multi_snapshot/snapshot.py index 7a11bd1..acb95d1 100644 --- a/python/tk_multi_snapshot/snapshot.py +++ b/python/tk_multi_snapshot/snapshot.py @@ -430,9 +430,10 @@ def show_snapshot_dlg(self): msg = "Unable to snapshot!\n\nPlease save the scene as a valid work file before continuing" QtGui.QMessageBox.information(None, "Unable To Snapshot!", msg) - # try to launch "Shotgun Save As" command if we have it: - save_as_cmd = tank.platform.current_engine().commands.get( - "Shotgun Save As..." + # try to launch "SG Save As" command if we have it: + save_as_cmd = ( + tank.platform.current_engine().commands.get("SG Save As...") or + tank.platform.current_engine().commands.get("Shotgun Save As...") ) if not save_as_cmd: # try old name, just in case