diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Templates/TemplateMultipleVariablesDialog.py --- a/Templates/TemplateMultipleVariablesDialog.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Templates/TemplateMultipleVariablesDialog.py Fri Mar 11 16:51:57 2011 +0100 @@ -10,11 +10,12 @@ from PyQt4.QtCore import * from PyQt4.QtGui import * + class TemplateMultipleVariablesDialog(QDialog): """ Class implementing a dialog for entering multiple template variables. """ - def __init__(self, variables, parent = None): + def __init__(self, variables, parent=None): """ Constructor @@ -115,4 +116,4 @@ values[var] = textEdit.text() except AttributeError: values[var] = textEdit.toPlainText() - return values \ No newline at end of file + return values