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

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
    """Read in all of the lines in the file and turn it into an ignore list"""
100
100
    ignored = set()
101
101
    for line in f.read().decode('utf8').split('\n'):
102
 
        line = line.rstrip('\r\n')
 
102
        line = line.rstrip('/\r\n')
103
103
        if not line or line.startswith('#'):
104
104
            continue
105
105
        ignored.add(line)
163
163
    ignored = get_user_ignores()
164
164
    to_add = []
165
165
    for ignore in new_ignores:
 
166
        ignore = ignore.rstrip('/')
166
167
        if ignore not in ignored:
167
168
            ignored.add(ignore)
168
169
            to_add.append(ignore)