Skip to content

Commit

Permalink
Probably going to regret this but let's try pypy/pypy3 in Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainDe committed Apr 2, 2015
1 parent 8c00630 commit fd663c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ python:
- "3.3"
- "3.4"
- "nightly"
- "pypy"
- "pypy3"

install:
- pip install pep8
Expand Down
4 changes: 2 additions & 2 deletions didyoumean/didyoumean.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def debug_traceback(traceback):
def print_error_info(type_, value, _):
"""Print error information."""
assert issubclass(type_, Exception)
value = value
# print(type_, value)
# value = value
print(type_, value)
return []


Expand Down

0 comments on commit fd663c7

Please sign in to comment.