--- a/src/eric7/Plugins/PluginVmListspace.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Plugins/PluginVmListspace.py Tue Oct 18 16:06:21 2022 +0200 @@ -12,14 +12,14 @@ from PyQt6.QtCore import QT_TRANSLATE_NOOP, QObject from PyQt6.QtGui import QPixmap -import UI.Info +from eric7.UI import Info # Start-Of-Header name = "Listspace Plugin" author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = False deactivateable = False -version = UI.Info.VersionOnly +version = Info.VersionOnly pluginType = "viewmanager" pluginTypename = "listspace" displayString = QT_TRANSLATE_NOOP("VmListspacePlugin", "Listspace") @@ -66,7 +66,7 @@ @return tuple of reference to instantiated viewmanager and activation status (boolean) """ - from ViewManagerPlugins.Listspace.Listspace import Listspace + from eric7.Plugins.ViewManagerPlugins.Listspace.Listspace import Listspace self.__object = Listspace(self.__ui) return self.__object, True