fix py2py3 example tests

This commit is contained in:
holger krekel 2012-06-03 16:10:10 +02:00
parent c11202b549
commit 971f96468c
2 changed files with 2 additions and 2 deletions

View File

@ -3,5 +3,5 @@ def test_exception_syntax():
try:
0/0
except ZeroDivisionError, e:
assert 0, e
pass

View File

@ -3,5 +3,5 @@ def test_exception_syntax():
try:
0/0
except ZeroDivisionError as e:
assert 0, e
pass