/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: Marien Zwart
  • Date: 2006-09-22 00:17:08 UTC
  • mto: (2029.1.1 marien.python2.5)
  • mto: This revision was merged to the branch mainline in revision 2030.
  • Revision ID: marienz@gentoo.org-20060922001708-b5db1381393a1f0a
Fix another python 2.5 issue.

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)