Fixed a missing comma in the E5MessageBox wizard dialog causing illegal code to be generated.

Fri, 29 Nov 2013 18:49:39 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 29 Nov 2013 18:49:39 +0100
changeset 3115
6815cfbbe813
parent 3114
7942a890a4fc
child 3116
ee0a183cec81

Fixed a missing comma in the E5MessageBox wizard dialog causing illegal code to be generated.

Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py	Thu Nov 28 18:40:36 2013 +0100
+++ b/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py	Fri Nov 29 18:49:39 2013 +0100
@@ -501,7 +501,7 @@
                 msgdlg = "res = E5MessageBox.okToClearData({0}".format(
                     os.linesep)
             
-            msgdlg += '{0}{1}{2}'.format(istring, parent, os.linesep)
+            msgdlg += '{0}{1},{2}'.format(istring, parent, os.linesep)
             msgdlg += '{0}self.trUtf8("{1}")'.format(
                 istring, self.eCaption.text())
             

eric ide

mercurial