--- a/eric7/QScintilla/ShellWindow.py Sat May 15 19:01:16 2021 +0200 +++ b/eric7/QScintilla/ShellWindow.py Sat May 15 20:08:03 2021 +0200 @@ -38,7 +38,7 @@ from UI.SearchWidget import SearchWidget from VirtualEnv.VirtualenvManager import VirtualenvManager -from eric6config import getConfig +from eric7config import getConfig class ShellWindow(E5MainWindow): @@ -164,7 +164,7 @@ """ Public method to get a reference to the APIs manager. - @return the APIs manager object (eric6.QScintilla.APIsManager) + @return the APIs manager object (eric7.QScintilla.APIsManager) """ return self.__apisManager @@ -1042,8 +1042,8 @@ Private slot to start a new instance of eric. """ program = sys.executable - eric6 = os.path.join(getConfig("ericDir"), "eric6_shell.py") - args = [eric6] + eric7 = os.path.join(getConfig("ericDir"), "eric7_shell.py") + args = [eric7] QProcess.startDetached(program, args) def __virtualEnvironmentChanged(self, venvName):