/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/info.py

Use rstrip

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        return '.'
55
55
    result = urlutils.relative_url(repo_url, inner_url)
56
56
    if result != inner_url:
57
 
        result = result.strip('/')
 
57
        result = result.rstrip('/')
58
58
    return result
59
59
 
60
60