/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-02 06:25:59 UTC
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: mbp@sourcefrog.net-20061102062559-c935f73df6bf3fd0
save commit message if commit fails (#32054)

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,
534
535
        elif a in ('--quiet', '-q'):
535
536
            trace.be_quiet()
536
537
        elif a.startswith('-D'):
537
 
            bzrlib.debug_flags.add(a[2:])
 
538
            debug.debug_flags.add(a[2:])
538
539
        else:
539
540
            argv_copy.append(a)
540
541
        i += 1