/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: John Arbash Meinel
  • Date: 2005-09-18 01:58:00 UTC
  • mfrom: (1185.3.27)
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050918015800-40f508f61fe35833
Merging up-to-date (1216) from mainline, mostly just run_bzr uses in-memory bzrlib.

Show diffs side-by-side

added added

removed removed

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