--- a/Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnSwitchDialog.py Fri Mar 11 16:51:57 2011 +0100 @@ -12,17 +12,18 @@ from .Ui_SvnSwitchDialog import Ui_SvnSwitchDialog + class SvnSwitchDialog(QDialog, Ui_SvnSwitchDialog): """ Class implementing a dialog to enter the data for a switch operation. """ - def __init__(self, taglist, reposURL, standardLayout, parent = None): + def __init__(self, taglist, reposURL, standardLayout, parent=None): """ Constructor @param taglist list of previously entered tags (list of strings) @param reposURL repository path (string) or None - @param standardLayout flag indicating the layout of the + @param standardLayout flag indicating the layout of the repository (boolean) @param parent parent widget (QWidget) """ @@ -53,4 +54,3 @@ if not tag: tagType = 4 return (tag, tagType) -