~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-09 04:09:57 UTC
  • Revision ID: mbp@sourcefrog.net-20050309040957-6cad07f466bb0bb8
add {arch} to default ignore pattern

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
BZRDIR = ".bzr"
27
27
 
28
 
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]']
 
28
DEFAULT_IGNORE = ['.*', '*~', '#*#', '*.tmp', '*.o', '*.a', '*.py[oc]',
 
29
                  '{arch}']
29
30