~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-11 20:39:06 UTC
  • mfrom: (1830.3.17 mac)
  • Revision ID: pqm@pqm.ubuntu.com-20060711203906-910d9b22b82b219c
(jam) support mac-normalization for unicode files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
                    ignore_glob = tree.is_ignored(subp)
267
267
                    if ignore_glob is not None:
268
268
                        # mutter("skip ignored sub-file %r", subp)
269
 
                        if ignore_glob not in ignored:
270
 
                            ignored[ignore_glob] = []
271
 
                        ignored[ignore_glob].append(subp)
 
269
                        ignored.setdefault(ignore_glob, []).append(subp)
272
270
                    else:
273
271
                        #mutter("queue to add sub-file %r", subp)
274
272
                        dirs_to_add.append((FastPath(subp, subf), this_ie))