Preferences/ConfigurationPages/DebuggerPythonPage.py

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

eric ide

mercurial