From a2bc3c7bcb7781f34c34e5db05abf6a106fc592e Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 28 Feb 2017 11:28:11 +0000 Subject: [PATCH] Fixed doc typo Close #515 --- doc/src/module.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/module.rst b/doc/src/module.rst index 2bd259e3..1c998252 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.