/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: Martin Pool
  • Date: 2006-09-22 02:32:41 UTC
  • mfrom: (2027.2.3 bzr.dev)
  • mto: This revision was merged to the branch mainline in revision 2030.
  • Revision ID: mbp@sourcefrog.net-20060922023241-474fdb7540c8cf2e
[merge] python2.5 fixes from Marien

Show diffs side-by-side

added added

removed removed

Lines of Context:
611
611
        return run_bzr(argv)
612
612
        # do this here inside the exception wrappers to catch EPIPE
613
613
        sys.stdout.flush()
614
 
    except Exception, e:
 
614
    except (KeyboardInterrupt, Exception), e:
615
615
        # used to handle AssertionError and KeyboardInterrupt
616
616
        # specially here, but hopefully they're handled ok by the logger now
617
617
        bzrlib.trace.report_exception(sys.exc_info(), sys.stderr)