/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/cleanup.py

  • Committer: Andrew Bennetts
  • Date: 2011-05-26 08:58:34 UTC
  • mfrom: (5917 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5918.
  • Revision ID: andrew.bennetts@canonical.com-20110526085834-ayairsmkocykjxl4
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
                # but don't propagate them.
189
189
                _run_cleanup(cleanup, *c_args, **kwargs)
190
190
        if exc_info is not None:
191
 
            raise exc_info[0], exc_info[1], exc_info[2]
 
191
            try:
 
192
                raise exc_info[0], exc_info[1], exc_info[2]
 
193
            finally:
 
194
                del exc_info
192
195
        # No error, so we can return the result
193
196
        return result
194
197