diff -r bad2e89047e7 -r 7848489bcb92 Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py --- a/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py Fri Oct 11 19:51:20 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py Sat Oct 12 15:01:28 2013 +0200 @@ -35,7 +35,8 @@ """ Private slot handling the selection of entries. """ - self.removeButton.setEnabled(len(self.subrepositories.selectedItems()) > 0) + self.removeButton.setEnabled( + len(self.subrepositories.selectedItems()) > 0) @pyqtSlot() def on_removeButton_clicked(self): @@ -53,8 +54,8 @@ Public method to retrieve the data. @return tuple giving the remaining sub-repositories, the removed ones - and a flag indicating to delete the removed ones from disc (list of strings, - list of strings, boolean) + and a flag indicating to delete the removed ones from disc (list + of strings, list of strings, boolean) """ return ( [self.subrepositories.item(row).text()