Rev 1476: Fix path separator in ignores. in http://people.samba.org/bzr/jelmer/bzr-svn/trunk
Jelmer Vernooij
jelmer at samba.org
Thu Jul 17 14:23:24 BST 2008
At http://people.samba.org/bzr/jelmer/bzr-svn/trunk
------------------------------------------------------------
revno: 1476
revision-id: jelmer at samba.org-20080717132317-9qs9gzc76q4hcsv1
parent: jelmer at samba.org-20080717125257-wb8ihlyhw96shmup
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 0.4
timestamp: Thu 2008-07-17 15:23:17 +0200
message:
Fix path separator in ignores.
modified:
workingtree.py workingtree.py-20060306120941-b083cb0fdd4a69de
=== modified file 'workingtree.py'
--- a/workingtree.py 2008-07-07 17:10:29 +0000
+++ b/workingtree.py 2008-07-17 13:23:17 +0000
@@ -76,7 +76,7 @@
keys = ignore_map.keys()
keys.sort()
for k in keys:
- ignores.append("./" + os.path.join(k.strip("/"), ignore_map[k].strip("/")))
+ ignores.append("./" + urlutils.join(k.strip("/"), ignore_map[k].strip("/")))
return ignores
More information about the bazaar-commits
mailing list