From a1d0d028b6e4a38917a8b6f2200696daba2d7646 Mon Sep 17 00:00:00 2001 From: Martin Biel Date: Wed, 16 Aug 2017 10:16:37 +0200 Subject: [PATCH] Updated error text in _process_userrecipes, now uses correct variable --- src/pipeline.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipeline.jl b/src/pipeline.jl index 231caa45..8879ff6f 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -73,7 +73,7 @@ function _process_userrecipes(plt::Plot, d::KW, args) next_series = shift!(still_to_process) # recipedata should be of type RecipeData. if it's not then the inputs must not have been fully processed by recipes if !(typeof(next_series) <: RecipeData) - error("Inputs couldn't be processed... expected RecipeData but got: $recipedata") + error("Inputs couldn't be processed... expected RecipeData but got: $next_series") end if isempty(next_series.args) _process_userrecipe(plt, kw_list, next_series)