89 """ |
89 """ |
90 Private slot to handle the Python interpreter selection. |
90 Private slot to handle the Python interpreter selection. |
91 """ |
91 """ |
92 file = E5FileDialog.getOpenFileName( |
92 file = E5FileDialog.getOpenFileName( |
93 self, |
93 self, |
94 self.trUtf8("Select Python interpreter for Debug Client"), |
94 self.tr("Select Python interpreter for Debug Client"), |
95 self.interpreterEdit.text(), |
95 self.interpreterEdit.text(), |
96 "") |
96 "") |
97 |
97 |
98 if file: |
98 if file: |
99 self.interpreterEdit.setText( |
99 self.interpreterEdit.setText( |
104 """ |
104 """ |
105 Private slot to handle the Debug Client selection. |
105 Private slot to handle the Debug Client selection. |
106 """ |
106 """ |
107 file = E5FileDialog.getOpenFileName( |
107 file = E5FileDialog.getOpenFileName( |
108 None, |
108 None, |
109 self.trUtf8("Select Debug Client"), |
109 self.tr("Select Debug Client"), |
110 self.debugClientEdit.text(), |
110 self.debugClientEdit.text(), |
111 self.trUtf8("Python Files (*.py *.py2)")) |
111 self.tr("Python Files (*.py *.py2)")) |
112 |
112 |
113 if file: |
113 if file: |
114 self.debugClientEdit.setText( |
114 self.debugClientEdit.setText( |
115 Utilities.toNativeSeparators(file)) |
115 Utilities.toNativeSeparators(file)) |
116 |
116 |