--- a/Plugins/VcsPlugins/vcsMercurial/HgOptionsDialog.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgOptionsDialog.py Fri Mar 11 16:51:57 2011 +0100 @@ -11,12 +11,13 @@ from .Ui_HgOptionsDialog import Ui_HgOptionsDialog + class HgOptionsDialog(QDialog, Ui_HgOptionsDialog): """ Class implementing a dialog to enter options used to start a project in the repository. """ - def __init__(self, vcs, project, parent = None): + def __init__(self, vcs, project, parent=None): """ Constructor @@ -34,6 +35,6 @@ @return a dictionary containing the data entered """ vcsdatadict = { - "message" : self.vcsLogEdit.text(), + "message": self.vcsLogEdit.text(), } return vcsdatadict