--- a/src/eric7/Plugins/PluginWizardDotDesktop.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Plugins/PluginWizardDotDesktop.py Tue Oct 18 16:06:21 2022 +0200 @@ -10,18 +10,18 @@ from PyQt6.QtCore import QObject from PyQt6.QtWidgets import QDialog -from EricWidgets.EricApplication import ericApp -from EricGui.EricAction import EricAction -from EricWidgets import EricMessageBox +from eric7.EricWidgets.EricApplication import ericApp +from eric7.EricGui.EricAction import EricAction +from eric7.EricWidgets import EricMessageBox -import UI.Info +from eric7.UI import Info # Start-of-Header name = ".desktop Wizard Plug-in" author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = UI.Info.VersionOnly +version = Info.VersionOnly className = "DotDesktopWizard" packageName = "__core__" shortDescription = "Wizard for the creation of a .desktop file." @@ -137,7 +137,8 @@ ericApp().getObject("ViewManager").newEditor() editor = ericApp().getObject("ViewManager").activeWindow() - from WizardPlugins.DotDesktopWizard.DotDesktopWizardDialog import ( + from eric7.Plugins.WizardPlugins.DotDesktopWizard.DotDesktopWizardDialog import ( + # __IGNORE_WARNING__ DotDesktopWizardDialog, )