152 @return client process object (QProcess) and a flag to indicate |
152 @return client process object (QProcess) and a flag to indicate |
153 a network connection (boolean) |
153 a network connection (boolean) |
154 """ |
154 """ |
155 interpreter = Preferences.getDebugger("Python3Interpreter") |
155 interpreter = Preferences.getDebugger("Python3Interpreter") |
156 if interpreter == "": |
156 if interpreter == "": |
157 E5MessageBox.critical(None, |
157 E5MessageBox.critical( |
|
158 None, |
158 self.trUtf8("Start Debugger"), |
159 self.trUtf8("Start Debugger"), |
159 self.trUtf8( |
160 self.trUtf8( |
160 """<p>No Python3 interpreter configured.</p>""")) |
161 """<p>No Python3 interpreter configured.</p>""")) |
161 return None, False |
162 return None, False |
162 |
163 |