--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py Sun Dec 18 14:19:10 2022 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py Sun Dec 18 19:33:46 2022 +0100 @@ -14,9 +14,9 @@ from PyQt6.QtCore import pyqtSlot from PyQt6.QtWidgets import QDialog -from eric7 import Utilities from eric7.EricWidgets import EricMessageBox from eric7.EricWidgets.EricApplication import ericApp +from eric7.SystemUtilities import FileSystemUtilities from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog @@ -86,9 +86,9 @@ self.repoRootLabel2.setText(reposRoot) else: project = ericApp().getObject("Project") - if Utilities.normcasepath(path) != Utilities.normcasepath( - project.getProjectPath() - ): + if FileSystemUtilities.normcasepath( + path + ) != FileSystemUtilities.normcasepath(project.getProjectPath()): path = project.getRelativePath(path) reposURL = reposURL.replace(path, "") self.repoRootLabel1.hide()