3405:ed72a8e08be4 | 3409:b7a3455e9ba0 |
---|---|
63 Public method to retrieve the entered data. | 63 Public method to retrieve the entered data. |
64 | 64 |
65 @return tuple naming the new and old bookmark names | 65 @return tuple naming the new and old bookmark names |
66 (string, string) | 66 (string, string) |
67 """ | 67 """ |
68 return self.nameEdit.text(), self.bookmarkCombo.currentText() | 68 return ( |
69 self.nameEdit.text().replace(" ", "_"), | |
70 self.bookmarkCombo.currentText().replace(" ", "_") | |
71 ) |