--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Wed Jul 13 14:55:47 2022 +0200 @@ -18,7 +18,7 @@ def getServersPath(): """ Module function to get the filename of the servers file. - + @return filename of the servers file (string) """ if Utilities.isWindowsPlatform(): @@ -32,7 +32,7 @@ def getConfigPath(): """ Module function to get the filename of the config file. - + @return filename of the config file (string) """ if Utilities.isWindowsPlatform(): @@ -64,7 +64,7 @@ configList = f.read().splitlines() except OSError: return - + newConfig = [] ignoresFound = False amendList = [] @@ -94,7 +94,7 @@ amendList.append(amend) else: newConfig.append(line) - + if newConfig != configList: with contextlib.suppress(OSError), open(config, "w") as f: f.write("\n".join(newConfig))