--- a/src/eric7/WebBrowser/Network/ProtocolHandlerManager.py Wed Sep 25 14:07:40 2024 +0200 +++ b/src/eric7/WebBrowser/Network/ProtocolHandlerManager.py Wed Sep 25 14:48:57 2024 +0200 @@ -14,7 +14,7 @@ from PyQt6.QtCore import QObject, QUrl from PyQt6.QtWebEngineCore import QWebEnginePage -from eric7 import Globals +from eric7 import EricUtilities class ProtocolHandlerManager(QObject): @@ -93,7 +93,7 @@ @rtype str """ return os.path.join( - Globals.getConfigDir(), "web_browser", "protocol_handlers.json" + EricUtilities.getConfigDir(), "web_browser", "protocol_handlers.json" ) def __load(self):