From 8f28f4106037faded3e3b62e13fa4d6bab49d4ae Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Mon, 9 Apr 2018 15:16:52 -0400 Subject: [PATCH] corrects incorrect variable name --- src/pg/sql/05_segmentation.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pg/sql/05_segmentation.sql b/src/pg/sql/05_segmentation.sql index 37f2804..daceca3 100644 --- a/src/pg/sql/05_segmentation.sql +++ b/src/pg/sql/05_segmentation.sql @@ -162,6 +162,6 @@ else: 'Pick a new model name or adjust features.'.format( model_name, ', '.join(sorted(feature_columns)), - ', '.join(sorted(stored_columns)) + ', '.join(sorted(stored_features)) )) $$ LANGUAGE plpythonu VOLATILE PARALLEL UNSAFE;