~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/crash.py

  • Committer: Jonathan Riddell
  • Date: 2011-10-18 11:50:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6224.
  • Revision ID: jriddell@canonical.com-20111018115054-mlcfpvfzzfh8ivya
remove unused pass statement

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
            return
71
71
    except ImportError, e:
72
72
        trace.mutter("couldn't find apport bug-reporting library: %s" % e)
73
 
        pass
74
73
    except Exception, e:
75
74
        # this should only happen if apport is installed but it didn't
76
75
        # work, eg because of an io error writing the crash file
77
76
        trace.mutter("bzr: failed to report crash using apport: %r" % e)
78
77
        trace.log_exception_quietly()
79
 
        pass
80
78
    return report_bug_legacy(exc_info, stderr)
81
79
 
82
80