please, use bzrlib.urlutils.local_path_from_url
Alexander Belchenko
bialix at ukr.net
Tue Feb 9 23:00:59 GMT 2010
Dear plugins writers,
Please, don't convert URLs to file paths using this hack:
from_location = from_location[len("file://"):]
Please, always use dedicated API for this:
bzrlib.urlutils.local_path_from_url
Because the hack with len("file://") does not work on Windows, see:
URL: file:///C:/foo/bar
path after hack: /C:/foo/bar
should be: C:/foo/bar
Thank you.
More information about the bazaar
mailing list