--- a/src/eric7/DataViews/PyProfileDialog.py Tue Oct 22 17:22:53 2024 +0200 +++ b/src/eric7/DataViews/PyProfileDialog.py Tue Oct 22 17:49:41 2024 +0200 @@ -288,7 +288,7 @@ try: if FileSystemUtilities.isRemoteFileName(fname): data = self.__serverFsInterface.readFile(fname) - self.stats = pickle.loads(data) + self.stats = pickle.loads(data) # secok else: with open(fname, "rb") as f: self.stats = pickle.load(f) # secok