--- a/src/eric7/HelpViewer/HelpViewerWidget.py Sun Dec 18 14:19:10 2022 +0100 +++ b/src/eric7/HelpViewer/HelpViewerWidget.py Sun Dec 18 19:33:46 2022 +0100 @@ -36,7 +36,7 @@ except ImportError: WEBENGINE_AVAILABLE = False -from eric7 import Preferences, Utilities +from eric7 import Globals, Preferences from eric7.EricGui import EricPixmapCache from eric7.EricWidgets import EricFileDialog, EricMessageBox from eric7.EricWidgets.EricApplication import ericApp @@ -680,7 +680,7 @@ @return path of the QtHelp collection file @rtype str """ - qthelpDir = os.path.join(Utilities.getConfigDir(), "qthelp") + qthelpDir = os.path.join(Globals.getConfigDir(), "qthelp") if not os.path.exists(qthelpDir): os.makedirs(qthelpDir) return os.path.join(qthelpDir, "eric7help.qhc")