From f13382297748b4ed711fa24bfe5fe3ea2b6a2311 Mon Sep 17 00:00:00 2001 From: "Gareth J. Greenaway" Date: Fri, 6 Jun 2014 14:19:51 -0700 Subject: [PATCH] Fixing lint issues in odbc.py. --- salt/returners/odbc.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/salt/returners/odbc.py b/salt/returners/odbc.py index 8f2c32ae5d..cd78a0f801 100644 --- a/salt/returners/odbc.py +++ b/salt/returners/odbc.py @@ -100,7 +100,6 @@ correctly. Replace with equivalent SQL for other ODBC-compliant servers:: # Import python libs import json -import logging # FIXME We'll need to handle this differently for Windows. # Import third party libs @@ -220,7 +219,7 @@ def get_fun(fun): ret = {} if data: for minion, jid, retval in data: - ret[minion] = json.loads(full_ret) + ret[minion] = json.loads(retval) _close_conn(conn) return ret