mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 10:23:43 +03:00
Improved error message on connect when kwargs are passed together with dns
This commit is contained in:
parent
cd316a94f1
commit
cf3c6f86ff
|
@ -165,9 +165,8 @@ def connect(dsn=None,
|
||||||
|
|
||||||
if dsn is not None and items:
|
if dsn is not None and items:
|
||||||
raise InterfaceError(
|
raise InterfaceError(
|
||||||
"you cannot specify keyword arguments (%s)"
|
"'%s' is an invalid keyword argument when the dsn is specified"
|
||||||
" together with a connection string"
|
% items[0][0])
|
||||||
% ", ".join([k for k, v in items]))
|
|
||||||
|
|
||||||
if dsn is None:
|
if dsn is None:
|
||||||
if not items:
|
if not items:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user