Fixing pylint error by removing hidden trailing spaces

This commit is contained in:
nmadhok 2014-06-21 02:26:22 -04:00
parent 8ae2b9e93a
commit 5dabfdb2dd

View file

@ -240,8 +240,8 @@ 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
WITH updated AS (UPDATE pg_authid SET rolconnlimit = 2000 WHERE
rolname = 'rolename' RETURNING rolconnlimit) SELECT * FROM updated;
CLI Example: