/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

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