88 def on_reportButton_clicked(self): |
88 def on_reportButton_clicked(self): |
89 """ |
89 """ |
90 Private slot to report the entered data to the eric-bugs email address. |
90 Private slot to report the entered data to the eric-bugs email address. |
91 """ |
91 """ |
92 body = "\r\n".join([ |
92 body = "\r\n".join([ |
93 "This is an unknow MicroPython device. Please add it.", |
93 "This is an unknown MicroPython device. Please add it.", |
94 "", |
94 "", |
95 "VID: {0}".format(self.vidEdit.text()), |
95 "VID: {0}".format(self.vidEdit.text()), |
96 "PID: {0}".format(self.pidEdit.text()), |
96 "PID: {0}".format(self.pidEdit.text()), |
97 "Description: {0}".format(self.descriptionEdit.text()), |
97 "Description: {0}".format(self.descriptionEdit.text()), |
98 "Device Type: {0}".format(self.deviceTypeComboBox.currentData()), |
98 "Device Type: {0}".format(self.deviceTypeComboBox.currentData()), |