Removed not needed json import

This commit is contained in:
Juan Ignacio Sánchez Lara 2015-08-20 10:22:44 +02:00
parent 9c70e5f91a
commit eb912b48bf

View File

@ -58,7 +58,6 @@ $$
# Execute returns string, not json :(
response = plpy.execute("SELECT value FROM cartodb.CDB_CONF WHERE KEY = '%s'" % key);
if len(response) > 0:
import json
value = response[0]['value']
SD['conf'][key] = value
return SD['conf'][key]