diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py --- a/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgRemoveSubrepositoriesDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -37,7 +37,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): @@ -55,8 +56,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()