Fixed doc typo

Close #515
This commit is contained in:
Daniele Varrazzo 2017-02-28 11:28:11 +00:00
parent c871c49f55
commit a2bc3c7bcb

View File

@ -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.