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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-03 07:49:05 UTC
  • mfrom: (1831.1.2 bzr.merge.no-ignores)
  • Revision ID: pqm@pqm.ubuntu.com-20060703074905-677c02d441974aea
(mbp) remove default ignore pattern list

Show diffs side-by-side

added added

removed removed

Lines of Context:
1079
1079
        if hasattr(self, '_ignorelist'):
1080
1080
            return self._ignorelist
1081
1081
 
1082
 
        l = bzrlib.DEFAULT_IGNORE[:]
 
1082
        l = []
1083
1083
        if self.has_filename(bzrlib.IGNORE_FILENAME):
1084
1084
            f = self.get_file_byname(bzrlib.IGNORE_FILENAME)
1085
1085
            l.extend([line.rstrip("\n\r").decode('utf-8')