--- a/src/eric7/Plugins/PluginWizardEricMessageBox.py Tue Nov 21 11:42:45 2023 +0100 +++ b/src/eric7/Plugins/PluginWizardEricMessageBox.py Wed Nov 22 17:19:10 2023 +0100 @@ -107,11 +107,11 @@ @param editor reference to the current editor @return the generated code (string) """ - from eric7.Plugins.WizardPlugins.EricMessageBoxWizard.EricMessageBoxWizardDialog import ( # __IGNORE_WARNING__ + from eric7.Plugins.WizardPlugins.EricMessageBoxWizard import ( EricMessageBoxWizardDialog, ) - dlg = EricMessageBoxWizardDialog(None) + dlg = EricMessageBoxWizardDialog.EricMessageBoxWizardDialog(None) if dlg.exec() == QDialog.DialogCode.Accepted: line, index = editor.getCursorPosition() indLevel = editor.indentation(line) // editor.indentationWidth()