Skip to content

Commit

Permalink
Remove py2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hit9 committed Jun 7, 2013
1 parent f18f619 commit 763c65d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,7 +1,6 @@
language: python

python:
- 2.5
- 2.6
- 2.7

Expand Down
4 changes: 2 additions & 2 deletions tests.py
Expand Up @@ -24,6 +24,6 @@
try:
assert md_conf == json_result
print "OK: %s == %s" % (md_fp, json_fp)
except AssertionError:
except AssertionError as e:
print md_conf
raise AssertionError
raise e

0 comments on commit 763c65d

Please sign in to comment.