From: Eevee Date: Tue, 28 Jul 2009 15:25:11 +0000 (-0700) Subject: Changed exception syntax to work with Python 2.5. X-Git-Tag: veekun-promotions/2010050901~231 X-Git-Url: http://git.veekun.com/zzz-pokedex.git/commitdiff_plain/06be8bc5add31a5937b252c678d60037cb103b5a?ds=inline Changed exception syntax to work with Python 2.5. --- diff --git a/pokedex/__init__.py b/pokedex/__init__.py index 8437ce4..4a731d1 100644 --- a/pokedex/__init__.py +++ b/pokedex/__init__.py @@ -104,7 +104,7 @@ def command_csvimport(engine_uri, directory='.'): try: session.add(row) session.flush() - except IntegrityError as e: + except IntegrityError, e: failed_rows.append(row) # Loop over the failed rows and keep trying to insert them. If a loop @@ -121,7 +121,7 @@ def command_csvimport(engine_uri, directory='.'): # Success! del failed_rows[i] do_another_loop = True - except IntegrityError as e: + except IntegrityError, e: pass if failed_rows: