Corrected the canonicalization routine for the PySvn plug-in. 5_2_x

Wed, 13 Jun 2012 20:16:59 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 13 Jun 2012 20:16:59 +0200
branch
5_2_x
changeset 1899
5204bd9baeb5
parent 1896
00a011db5c84
child 1900
1149496b4e67

Corrected the canonicalization routine for the PySvn plug-in.

Plugins/VcsPlugins/vcsPySvn/subversion.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsPySvn/subversion.py	Tue Jun 12 19:01:14 2012 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/subversion.py	Wed Jun 13 20:16:59 2012 +0200
@@ -2200,6 +2200,8 @@
             url = url[2:]
         if protocol == "file":
             url = os.path.normcase(url)
+            if url[1] == ":":
+                url = url.replace(":", "|", 1)
         url = url.replace('\\', '/')
         if url.endswith('/'):
             url = url[:-1]

eric ide

mercurial