--- a/src/eric7/Preferences/Shortcuts.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Preferences/Shortcuts.py Tue Oct 18 16:06:21 2022 +0200 @@ -12,10 +12,10 @@ from PyQt6.QtCore import QFile, QIODevice, QCoreApplication from PyQt6.QtGui import QKeySequence -from EricWidgets.EricApplication import ericApp -from EricWidgets import EricMessageBox +from eric7.EricWidgets.EricApplication import ericApp +from eric7.EricWidgets import EricMessageBox -from Preferences import Prefs, syncPreferences +from eric7.Preferences import Prefs, syncPreferences def __readShortcut(act, category, prefClass): @@ -243,7 +243,7 @@ # old XML based file f = QFile(fn) if f.open(QIODevice.OpenModeFlag.ReadOnly): - from EricXML.ShortcutsReader import ShortcutsReader + from eric7.EricXML.ShortcutsReader import ShortcutsReader reader = ShortcutsReader(f) reader.readXML()