/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:
44
44
import bzrlib.osutils
45
45
from bzrlib.revisionspec import RevisionSpec
46
46
from bzrlib.symbol_versioning import (deprecated_method, zero_eight)
47
 
from bzrlib import trace
 
47
import bzrlib.trace
48
48
from bzrlib.trace import mutter, note, log_error, warning, be_quiet
49
49
 
50
50
plugin_cmds = {}
368
368
            if argsover:
369
369
                args.append(a)
370
370
                continue
 
371
            elif a == '-':
 
372
                args.append(a)
 
373
                continue
371
374
            elif a == '--':
372
375
                # We've received a standalone -- No more flags
373
376
                argsover = True