--- a/eric7/WebBrowser/WebBrowserWindow.py Sat May 15 19:01:16 2021 +0200 +++ b/eric7/WebBrowser/WebBrowserWindow.py Sat May 15 20:08:03 2021 +0200 @@ -56,7 +56,7 @@ from .WebBrowserSingleApplication import WebBrowserSingleApplicationServer -from eric6config import getConfig +from eric7config import getConfig class WebBrowserWindow(E5MainWindow): @@ -2458,7 +2458,7 @@ else: linkName = link - applPath = os.path.join(getConfig("ericDir"), "eric6_browser.py") + applPath = os.path.join(getConfig("ericDir"), "eric7_browser.py") args = [] args.append(applPath) args.append("--config={0}".format(Utilities.getConfigDir())) @@ -3313,7 +3313,7 @@ qthelpDir = os.path.join(Utilities.getConfigDir(), "qthelp") if not os.path.exists(qthelpDir): os.makedirs(qthelpDir) - return os.path.join(qthelpDir, "eric6help.qhc") + return os.path.join(qthelpDir, "eric7help.qhc") @classmethod def networkManager(cls):