~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-12 14:24:06 UTC
  • mfrom: (1858 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1860.
  • Revision ID: john@arbash-meinel.com-20060712142406-d61dbe10e698517d
[merge] bzr.dev 1858

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
                    ignore_glob = tree.is_ignored(subp)
274
274
                    if ignore_glob is not None:
275
275
                        # mutter("skip ignored sub-file %r", subp)
276
 
                        if ignore_glob not in ignored:
277
 
                            ignored[ignore_glob] = []
278
 
                        ignored[ignore_glob].append(subp)
 
276
                        ignored.setdefault(ignore_glob, []).append(subp)
279
277
                    else:
280
278
                        #mutter("queue to add sub-file %r", subp)
281
279
                        dirs_to_add.append((FastPath(subp, subf), this_ie))