~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2007-09-14 02:17:32 UTC
  • mfrom: (2820 +trunk)
  • mto: (2592.3.140 repository)
  • mto: This revision was merged to the branch mainline in revision 2821.
  • Revision ID: robertc@robertcollins.net-20070914021732-q43pb6khebypqnjm
Resolve conflicts in NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
796
796
 
797
797
 
798
798
def run_bzr_catch_errors(argv):
 
799
    # Note: The except clause logic below should be kept in sync with the
 
800
    # profile() routine in lsprof.py.
799
801
    try:
800
802
        return run_bzr(argv)
801
803
    except (KeyboardInterrupt, Exception), e: