/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: 2006-10-06 05:53:44 UTC
  • mfrom: (2063 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2071.
  • Revision ID: john@arbash-meinel.com-20061006055344-e73b97b7c6ca6e72
[merge] bzr.dev 2063

Show diffs side-by-side

added added

removed removed

Lines of Context:
623
623
        return run_bzr(argv)
624
624
        # do this here inside the exception wrappers to catch EPIPE
625
625
        sys.stdout.flush()
626
 
    except Exception, e:
 
626
    except (KeyboardInterrupt, Exception), e:
627
627
        # used to handle AssertionError and KeyboardInterrupt
628
628
        # specially here, but hopefully they're handled ok by the logger now
629
629
        trace.report_exception(sys.exc_info(), sys.stderr)