We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2067874 commit cc2306dCopy full SHA for cc2306d
1 file changed
python/create_sandbox/dialog.py
@@ -13,11 +13,6 @@
13
import os
14
from sgtk.platform.qt import QtCore, QtGui
15
16
-try:
17
- from tank_vendor import sgutils
18
-except ImportError:
19
- from tank_vendor import six as sgutils
20
-
21
from .ui.dialog import Ui_Dialog
22
23
# import frameworks
@@ -94,7 +89,7 @@ def _process(self):
94
89
"""
95
90
Creates a new configuration
96
91
97
- path = sgutils.ensure_str(self.ui.path.text())
92
+ path = self.ui.path.text()
98
93
99
# validate the name
100
if self.ui.config_name.text() == "":
0 commit comments