Preferences/ConfigurationPages/DebuggerPython3Page.py

changeset 3190
a9a94491c4fd
parent 3186
a05eff845522
child 3484
645c12de6b0c
equal deleted inserted replaced
3189:9a21c547de5f 3190:a9a94491c4fd
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

eric ide

mercurial