diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py --- a/Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -4,7 +4,8 @@ # """ -Module implementing a dialog to enter options used to start a project in the VCS. +Module implementing a dialog to enter options used to start a project in +the VCS. """ from __future__ import unicode_literals # __IGNORE_WARNING__ @@ -68,11 +69,13 @@ E5FileDialog.Options(E5FileDialog.ShowDirsOnly)) if directory: - self.vcsUrlEdit.setText(Utilities.toNativeSeparators(directory)) + self.vcsUrlEdit.setText( + Utilities.toNativeSeparators(directory)) else: from .SvnRepoBrowserDialog import SvnRepoBrowserDialog dlg = SvnRepoBrowserDialog(self.vcs, mode="select", parent=self) - dlg.start(self.protocolCombo.currentText() + self.vcsUrlEdit.text()) + dlg.start( + self.protocolCombo.currentText() + self.vcsUrlEdit.text()) if dlg.exec_() == QDialog.Accepted: url = dlg.getSelectedUrl() if url: @@ -86,6 +89,8 @@ def on_protocolCombo_activated(self, protocol): """ Private slot to switch the status of the directory selection button. + + @param protocol selected protocol (string) """ if protocol == "file://": self.networkPath = self.vcsUrlEdit.text()