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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-19 21:44:16 UTC
  • mfrom: (1836.1.26 ignores)
  • Revision ID: pqm@pqm.ubuntu.com-20060719214416-9fab2f627df9f1aa
(jam) allow global user ignores, and include a small set by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import sys
25
25
 
26
26
import bzrlib
27
 
from bzrlib import (branch, bundle, bzrdir, config, errors, log, osutils,
28
 
                    repository, transport, ui, urlutils)
 
27
from bzrlib import (
 
28
    branch,
 
29
    bundle,
 
30
    bzrdir,
 
31
    config,
 
32
    errors,
 
33
    ignores,
 
34
    log,
 
35
    osutils,
 
36
    repository,
 
37
    transport,
 
38
    ui,
 
39
    urlutils,
 
40
    )
29
41
from bzrlib.branch import Branch, BranchReferenceFormat
30
42
from bzrlib.bundle import read_bundle_from_url
31
43
from bzrlib.bundle.apply_bundle import install_bundle, merge_bundle
1489
1501
        from bzrlib.atomicfile import AtomicFile
1490
1502
        if old_default_rules is not None:
1491
1503
            # dump the rules and exit
1492
 
            for pattern in bzrlib.DEFAULT_IGNORE:
 
1504
            for pattern in ignores.OLD_DEFAULTS:
1493
1505
                print pattern
1494
1506
            return
1495
1507
        if name_pattern is None: