diff -r 2074b8393649 -r 5c5ed40d533d src/eric7/Project/ProjectFile.py --- a/src/eric7/Project/ProjectFile.py Sun Dec 31 18:01:05 2023 +0100 +++ b/src/eric7/Project/ProjectFile.py Sun Dec 31 20:27:52 2023 +0100 @@ -90,7 +90,7 @@ ) try: - jsonString = json.dumps(projectDict, indent=2, sort_keys=True) + jsonString = json.dumps(projectDict, indent=2, sort_keys=True) + "\n" with open(filename, "w", newline="") as f: f.write(jsonString) except (OSError, TypeError) as err: