Skip to content

Commit

Permalink
Update CHANGES.rst and fix Python 2.6 compat.
Browse files Browse the repository at this point in the history
Update CHANGES.rst with the RB ID.
Fixup string formatting to be python2.6 compatible.
  • Loading branch information
jsirois committed Feb 7, 2015
1 parent 402b690 commit 3c4264e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CHANGES
----------

* Bug fix: Honor installed sys.excepthook in pex teardown.
`RB #XXX <https://rbcommons.com/s/twitter/r/XXX>`_
`RB #1733 <https://rbcommons.com/s/twitter/r/1733>`_

-----
0.8.5
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pex.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_excepthook_honored():
import sys
def excepthook(ex_type, ex, tb):
print('Custom hook called with: {}'.format(ex))
print('Custom hook called with: {0}'.format(ex))
sys.exit(42)
sys.excepthook = excepthook
Expand Down

0 comments on commit 3c4264e

Please sign in to comment.