--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py Mon Sep 23 19:22:12 2019 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py Mon Sep 23 20:03:20 2019 +0200 @@ -80,8 +80,10 @@ self.repoRootLabel2.setText(reposRoot) else: project = e5App().getObject('Project') - if Utilities.normcasepath(path) != \ - Utilities.normcasepath(project.getProjectPath()): + if ( + Utilities.normcasepath(path) != + Utilities.normcasepath(project.getProjectPath()) + ): path = project.getRelativePath(path) reposURL = reposURL.replace(path, '') self.repoRootLabel1.hide() @@ -145,12 +147,16 @@ a flag indicating a diff summary (boolean) """ if self.vcs.otherData["standardLayout"]: - url1 = self.repoRootLabel1.text() + \ - self.typeCombo1.currentText() + \ + url1 = ( + self.repoRootLabel1.text() + + self.typeCombo1.currentText() + self.labelCombo1.currentText() - url2 = self.repoRootLabel2.text() + \ - self.typeCombo2.currentText() + \ + ) + url2 = ( + self.repoRootLabel2.text() + + self.typeCombo2.currentText() + self.labelCombo2.currentText() + ) else: url1 = self.labelCombo1.currentText() url2 = self.labelCombo2.currentText()