fix typo on error return

This commit is contained in:
Andy Eschbacher 2017-01-10 14:37:07 -05:00
parent d679975f72
commit 10ce109d09

View File

@ -45,7 +45,7 @@ class AnalysisDataProvider:
verify_data(len(data))
return data
except plpy.SPIError, err:
plpy.error('Analysis failed: %s' % e)
plpy.error('Analysis failed: %s' % err)
return pu.empty_zipped_array(2)
def get_nonspatial_kmeans(self, query):