94 """ |
94 """ |
95 Private slot to handle the Python interpreter selection. |
95 Private slot to handle the Python interpreter selection. |
96 """ |
96 """ |
97 file = E5FileDialog.getOpenFileName( |
97 file = E5FileDialog.getOpenFileName( |
98 self, |
98 self, |
99 self.trUtf8("Select Python interpreter for Debug Client"), |
99 self.tr("Select Python interpreter for Debug Client"), |
100 self.interpreterEdit.text(), |
100 self.interpreterEdit.text(), |
101 "") |
101 "") |
102 |
102 |
103 if file: |
103 if file: |
104 self.interpreterEdit.setText( |
104 self.interpreterEdit.setText( |
109 """ |
109 """ |
110 Private slot to handle the Debug Client selection. |
110 Private slot to handle the Debug Client selection. |
111 """ |
111 """ |
112 file = E5FileDialog.getOpenFileName( |
112 file = E5FileDialog.getOpenFileName( |
113 None, |
113 None, |
114 self.trUtf8("Select Debug Client"), |
114 self.tr("Select Debug Client"), |
115 self.debugClientEdit.text(), |
115 self.debugClientEdit.text(), |
116 self.trUtf8("Python Files (*.py *.py3)")) |
116 self.tr("Python Files (*.py *.py3)")) |
117 |
117 |
118 if file: |
118 if file: |
119 self.debugClientEdit.setText( |
119 self.debugClientEdit.setText( |
120 Utilities.toNativeSeparators(file)) |
120 Utilities.toNativeSeparators(file)) |
121 |
121 |