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

  • Committer: Martin Pool
  • Date: 2006-11-03 02:23:32 UTC
  • mfrom: (2118 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2119.
  • Revision ID: mbp@sourcefrog.net-20061103022332-8faa29378257aba3
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
import bzrlib
41
41
from bzrlib import (
 
42
    debug,
42
43
    errors,
43
44
    option,
44
45
    osutils,
533
534
            opt_builtin = True
534
535
        elif a in ('--quiet', '-q'):
535
536
            trace.be_quiet()
 
537
        elif a.startswith('-D'):
 
538
            debug.debug_flags.add(a[2:])
536
539
        else:
537
540
            argv_copy.append(a)
538
541
        i += 1