diff options
author | Federico Di Gregorio <fog@initd.org> | 2005-10-18 01:35:34 +0000 |
---|---|---|
committer | Federico Di Gregorio <fog@initd.org> | 2005-10-18 01:35:34 +0000 |
commit | a0040160d6ac87e2711eab4aa680b65d12f8133e (patch) | |
tree | 096ff6734857b2eaf5094288cabd36b66c123fcb | |
parent | 6b0b634baec7d3b9a20ed1b6b39ee6f1400cd341 (diff) | |
download | psycopg2-a0040160d6ac87e2711eab4aa680b65d12f8133e.tar.gz |
Fixed typo in examples.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | examples/threads.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2005-10-18 Federico Di Gregorio <fog@initd.org> + * 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 9e3ea82..5477aa8 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] |