--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Sun Dec 18 14:19:10 2022 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnUtilities.py Sun Dec 18 19:33:46 2022 +0100 @@ -10,7 +10,7 @@ import contextlib import os -from eric7 import Utilities +from eric7.SystemUtilities import OSUtilities from .Config import DefaultConfig, DefaultIgnores @@ -21,11 +21,11 @@ @return filename of the servers file (string) """ - if Utilities.isWindowsPlatform(): + if OSUtilities.isWindowsPlatform(): appdata = os.environ["APPDATA"] return os.path.join(appdata, "Subversion", "servers") else: - homedir = Utilities.getHomeDir() + homedir = OSUtilities.getHomeDir() return os.path.join(homedir, ".subversion", "servers") @@ -35,11 +35,11 @@ @return filename of the config file (string) """ - if Utilities.isWindowsPlatform(): + if OSUtilities.isWindowsPlatform(): appdata = os.environ["APPDATA"] return os.path.join(appdata, "Subversion", "config") else: - homedir = Utilities.getHomeDir() + homedir = OSUtilities.getHomeDir() return os.path.join(homedir, ".subversion", "config")