src/eric7/Plugins/WizardPlugins/EricMessageBoxWizard/EricMessageBoxWizardDialog.py

branch
eric7
changeset 9433
6df1aeaa4529
parent 9413
80c06d472826
child 9473
3f23dbf37dbe
--- a/src/eric7/Plugins/WizardPlugins/EricMessageBoxWizard/EricMessageBoxWizardDialog.py	Tue Oct 25 17:25:51 2022 +0200
+++ b/src/eric7/Plugins/WizardPlugins/EricMessageBoxWizard/EricMessageBoxWizardDialog.py	Wed Oct 26 11:50:03 2022 +0200
@@ -428,7 +428,7 @@
         if len(buttons) == 0:
             return ""
 
-        joinstring = " |{0}{1}".format(os.linesep, istring)
+        joinstring = "{0}{1}| ".format(os.linesep, istring)
         intro = "," if withIntro else ""
         btnCode = "{0}{1}{2}{3}".format(
             intro, os.linesep, istring, joinstring.join(buttons)
@@ -568,5 +568,5 @@
             if not self.parentNone.isChecked():
                 msgdlg += ",{0}{1}parent={2}".format(os.linesep, istring, parent)
 
-        msgdlg += "{0}){0}".format(estring)
+        msgdlg += ",{0}){0}".format(estring)
         return msgdlg

eric ide

mercurial