diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-28 11:28:11 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-28 11:28:11 +0000 |
commit | a2bc3c7bcb7781f34c34e5db05abf6a106fc592e (patch) | |
tree | 10ba0eaae41a03a1cd0b93c8a1d01bb47cd8a1ac /doc/src | |
parent | c871c49f55e2e1787f1c2d7edeaf0f8f5c876db3 (diff) | |
download | psycopg2-a2bc3c7bcb7781f34c34e5db05abf6a106fc592e.tar.gz |
Fixed doc typo
Close #515
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. |