--- 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