Fixing pylint error

This commit is contained in:
nmadhok 2014-06-21 02:00:24 -04:00
parent d395e1fddf
commit 8ae2b9e93a

View File

@ -240,7 +240,7 @@ def psql_query(query, user=None, host=None, port=None, maintenance_db=None,
Run an SQL-Query and return the results as a list. This command
only supports SELECT statements. This limitation can be worked around
with a query like this:
WITH updated AS (UPDATE pg_authid SET rolconnlimit = 2000 WHERE
rolname = 'rolename' RETURNING rolconnlimit) SELECT * FROM updated;