From a0040160d6ac87e2711eab4aa680b65d12f8133e Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Tue, 18 Oct 2005 01:35:34 +0000 Subject: [PATCH] Fixed typo in examples. --- ChangeLog | 2 ++ examples/threads.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 59f16dfa..2af7bf86 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-10-18 Federico Di Gregorio + * examples/threads.py: fixed small typo: psycopg -> psycopg2. + * Big cleanup of unsigned chars to tame gcc 4. * Big cleanup of module names (i.e., psycopg2._psycopg everywhere.) diff --git a/examples/threads.py b/examples/threads.py index 9e3ea82d..5477aa8c 100644 --- a/examples/threads.py +++ b/examples/threads.py @@ -37,7 +37,7 @@ MODE = 1 ## don't modify anything below tis line (except for experimenting) import sys, psycopg2, threading -from psycopg.pool import ThreadedConnectionPool +from psycopg2.pool import ThreadedConnectionPool if len(sys.argv) > 1: DSN = sys.argv[1]