138 no = self.__vcs.getPlugin().getPreferences("CommitAuthorsLimit") |
138 no = self.__vcs.getPlugin().getPreferences("CommitAuthorsLimit") |
139 del commitAuthors[no:] |
139 del commitAuthors[no:] |
140 self.__vcs.getPlugin().setPreferences( |
140 self.__vcs.getPlugin().setPreferences( |
141 'CommitAuthors', commitAuthors) |
141 'CommitAuthors', commitAuthors) |
142 |
142 |
143 if self.dateTimeGroup.isChecked(): |
143 dateTime = ( |
144 dateTime = self.dateTimeEdit.dateTime().toString( |
144 self.dateTimeEdit.dateTime().toString("yyyy-MM-dd hh:mm") |
145 "yyyy-MM-dd hh:mm") |
145 if self.dateTimeGroup.isChecked() else |
146 else: |
146 "" |
147 dateTime = "" |
147 ) |
148 |
148 |
149 return ( |
149 return ( |
150 msg, |
150 msg, |
151 self.amendCheckBox.isChecked(), |
151 self.amendCheckBox.isChecked(), |
152 self.subrepoCheckBox.isChecked(), |
152 self.subrepoCheckBox.isChecked(), |