diff options
author | Federico Di Gregorio <fog@initd.org> | 2005-06-24 07:11:44 +0000 |
---|---|---|
committer | Federico Di Gregorio <fog@initd.org> | 2005-06-24 07:11:44 +0000 |
commit | 5edfdc2a547e2d57752841294d270c3e03894e3b (patch) | |
tree | 7aedc1a1b31187c0a1e68d83b8ec7230c71e6738 /lib/extras.py | |
parent | 3f63c53fd0a70eeab9c42ccd0b46dad98682cef9 (diff) | |
download | psycopg2-5edfdc2a547e2d57752841294d270c3e03894e3b.tar.gz |
INTERVAL overflow fix.
Diffstat (limited to 'lib/extras.py')
-rw-r--r-- | lib/extras.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/extras.py b/lib/extras.py index 55168b5..aae5e4f 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -17,9 +17,9 @@ and classes untill a better place in the distribution is found. # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. -from psycopg.extensions import cursor as _cursor -from psycopg.extensions import register_adapter as _RA -from psycopg.extensions import adapt as _A +from psycopg2.extensions import cursor as _cursor +from psycopg2.extensions import register_adapter as _RA +from psycopg2.extensions import adapt as _A class DictCursor(_cursor): |