diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py --- a/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py Fri Mar 11 16:51:57 2011 +0100 @@ -12,17 +12,18 @@ from .Ui_SvnTagDialog import Ui_SvnTagDialog + class SvnTagDialog(QDialog, Ui_SvnTagDialog): """ Class implementing a dialog to enter the data for a tagging 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) """