diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/module.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/module.rst b/doc/src/module.rst index 2bd259e..1c99825 100644 --- a/doc/src/module.rst +++ b/doc/src/module.rst @@ -28,7 +28,7 @@ The module interface respects the standard defined in the |DBAPI|_. or using a set of keyword arguments:: - conn = psycopg2.connect(dbname"test", user="postgres", password="secret") + conn = psycopg2.connect(dbname="test", user="postgres", password="secret") or using a mix of both: if the same parameter name is specified in both sources, the *kwargs* value will have precedence over the *dsn* value. |