/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 from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 by Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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