~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Andrew Bennetts
  • Date: 2006-11-21 08:19:35 UTC
  • mfrom: (2018.8.1 split smart)
  • mto: (2018.5.35 hpss)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20061121081935-6440ef860ef00262
Merge from 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