~bulb/bzr/ignore

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

merge merge tweaks from aaron, which includes latest .dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
638
638
    bzrlib.trace.log_startup(argv)
639
639
    bzrlib.ui.ui_factory = bzrlib.ui.TextUIFactory()
640
640
 
 
641
    return run_bzr_catch_errors(argv[1:])
 
642
 
 
643
 
 
644
def run_bzr_catch_errors(argv):
641
645
    try:
642
646
        try:
643
647
            try:
644
 
                return run_bzr(argv[1:])
 
648
                return run_bzr(argv)
645
649
            finally:
646
650
                # do this here inside the exception wrappers to catch EPIPE
647
651
                sys.stdout.flush()