diff -r 0835ed67714b -r 2f0d208b8137 eric6/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py --- a/eric6/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Sat Nov 21 19:31:16 2020 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Sun Nov 22 16:04:59 2020 +0100 @@ -54,7 +54,7 @@ try: with open(config, "w") as f: f.write(DefaultConfig) - except IOError: + except OSError: pass @@ -66,7 +66,7 @@ try: with open(config, "r") as f: configList = f.read().splitlines() - except IOError: + except OSError: return newConfig = [] @@ -103,5 +103,5 @@ try: with open(config, "w") as f: f.write("\n".join(newConfig)) - except IOError: + except OSError: pass