##// END OF EJS Templates
convert svn: canonicalize path before calling url_from_path....
Brendan Cully -
r5020:780051cc default
parent child Browse files
Show More
@@ -39,8 +39,7 b' except ImportError:'
39 39
40 40 def geturl(path):
41 41 try:
42 #extract URL from working directory
43 return svn.client.url_from_path(path)
42 return svn.client.url_from_path(svn.core.svn_path_canonicalize(path))
44 43 except SubversionException:
45 44 pass
46 45 if os.path.isdir(path):
General Comments 0
You need to be logged in to leave comments. Login now