diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-11-21 11:45:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-21 11:45:34 +0000 |
commit | 858bc3d42a4dfc65f6ec21e7ad28959f8255ab28 (patch) | |
tree | f8c6259410ddf8087fba730faacc906b09878106 /lib/extras.py | |
parent | 7a2dd85caa7553d163f6579eb513a370ef069a0e (diff) | |
parent | 390e43fcb191d1b52ca747e2b71f938f9df52c95 (diff) | |
download | psycopg2-858bc3d42a4dfc65f6ec21e7ad28959f8255ab28.tar.gz |
Merge pull request #616 from jdufresne/modern-exceptions
Use modern except syntax throughout project
Diffstat (limited to 'lib/extras.py')
-rw-r--r-- | lib/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extras.py b/lib/extras.py index 798b3d2..8abb14f 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -363,7 +363,7 @@ class NamedTupleCursor(_cursor): try: from collections import namedtuple - except ImportError, _exc: + except ImportError as _exc: def _make_nt(self): raise self._exc else: |