diff -r 97e9b5cc51dc -r 70e464748aaa eric6/E5Gui/E5SingleApplication.py --- a/eric6/E5Gui/E5SingleApplication.py Wed Dec 02 19:09:38 2020 +0100 +++ b/eric6/E5Gui/E5SingleApplication.py Fri Dec 04 18:29:31 2020 +0100 @@ -162,7 +162,7 @@ @param fname name of file to be opened (string) """ - self.sendCommand(SAOpenFile, [Utilities.normabspath(fname)]) + self.sendCommand(SAOpenFile, [os.path.abspath(fname)]) def __openProject(self, pfname): """ @@ -170,7 +170,7 @@ @param pfname name of the projectfile to be opened (string) """ - self.sendCommand(SAOpenProject, [Utilities.normabspath(pfname)]) + self.sendCommand(SAOpenProject, [os.path.abspath(pfname)]) def __openMultiProject(self, pfname): """ @@ -178,7 +178,7 @@ @param pfname name of the projectfile to be opened (string) """ - self.sendCommand(SAOpenMultiProject, [Utilities.normabspath(pfname)]) + self.sendCommand(SAOpenMultiProject, [os.path.abspath(pfname)]) def __sendArguments(self, argsStr): """