From: Jay Freeman (saurik) Date: Wed, 23 Nov 2011 03:42:52 +0000 (+0000) Subject: Catch the right exception class. X-Git-Url: https://git.saurik.com/cyql.git/commitdiff_plain/90dd2c663baa1ddc323f77de419cb230e80cb34d Catch the right exception class. --- diff --git a/__init__.py b/__init__.py index 9dc57b3..2123108 100644 --- a/__init__.py +++ b/__init__.py @@ -37,7 +37,7 @@ class connect(object): try: psycopg2.extras.register_hstore(self.driver, globally=False, unicode=True) - except ProgrammingError, e: + except psycopg2.ProgrammingError, e: pass def close(self):