/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

Fix another bug in urlutils.join.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        path = base.split('/')
132
132
 
133
133
    if scheme is not None and len(path) >= 1:
134
 
        host = path[:2]
135
 
        path = path[2:]
 
134
        host = path[:1]
 
135
        path = path[1:]
136
136
    else:
137
137
        host = []
138
138
    for arg in args: