/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-10-26 14:30:28 UTC
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: mbp@sourcefrog.net-20061026143028-a4c4afcaa1778605
Add new -Derror global option to always display tracebacks

Show diffs side-by-side

added added

removed removed

Lines of Context:
533
533
            opt_builtin = True
534
534
        elif a in ('--quiet', '-q'):
535
535
            trace.be_quiet()
 
536
        elif a.startswith('-D'):
 
537
            bzrlib.debug_flags.add(a[2:])
536
538
        else:
537
539
            argv_copy.append(a)
538
540
        i += 1