From 36f0db81d228b612a66abf6c880d1d6629da77fc Mon Sep 17 00:00:00 2001 From: Ashesh Vashi Date: Tue, 8 May 2018 15:29:16 +0530 Subject: [PATCH] Fixed the string format error reported by Travis-CI. Reference: https://travis-ci.org/psycopg/psycopg2/jobs/376288585 --- psycopg/psycopgmodule.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/psycopg/psycopgmodule.c b/psycopg/psycopgmodule.c index 8b6623af..5ed1c1c6 100644 --- a/psycopg/psycopgmodule.c +++ b/psycopg/psycopgmodule.c @@ -424,8 +424,6 @@ psyco_encrypt_password(PyObject *self, PyObject *args) connectionObject *conn = NULL; - static char *kwlist[] = {"password", "user", "scope", "algorithm", NULL}; - if (!PyArg_ParseTuple(args, "OO|OO", &password, &user, &obj, &algorithm)) { return NULL; @@ -482,7 +480,7 @@ psyco_encrypt_password(PyObject *self, PyObject *args) if (!encrypted) { const char *msg = PQerrorMessage(conn->pgconn); if (msg && *msg) { - PyErr_Format(ProgrammingError, msg); + PyErr_Format(ProgrammingError, "%s", msg); res = NULL; goto exit; }