diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsMercurial/RebaseExtension/HgRebaseDialog.py --- a/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/HgRebaseDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/HgRebaseDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -19,7 +19,8 @@ """ Class implementing a dialog to enter the data for a rebase session. """ - def __init__(self, tagsList, branchesList, bookmarksList=None, parent=None): + def __init__(self, tagsList, branchesList, bookmarksList=None, + parent=None): """ Constructor @@ -263,11 +264,12 @@ """ Private method to retrieve the data for the rebase session. - @return tuple with a source indicator of "S" or "B", the source revision, the - destination revision, a flag indicating to collapse, a flag indicating to - keep the original changesets, a flag indicating to keep the original branch - name and a flag indicating to detach the source (string, string, string, - boolean, boolean, boolean, boolean) + @return tuple with a source indicator of "S" or "B", the source + revision, the destination revision, a flag indicating to collapse, + a flag indicating to keep the original changesets, a flag + indicating to keep the original branch name and a flag indicating + to detach the source (string, string, string, boolean, boolean, + boolean, boolean) """ if self.sourceButton.isChecked(): indicator = "S"