From f3f4a003f972f4d7278d6022d325a07ad30ed70e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Busqu=C3=A9?= Date: Fri, 5 Jul 2019 10:40:12 +0200 Subject: [PATCH] Fix key interpolation in KeyNotFoundInBagError --- lib/web_pipe/conn_support/errors.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/web_pipe/conn_support/errors.rb b/lib/web_pipe/conn_support/errors.rb index 8655656..b3ac959 100644 --- a/lib/web_pipe/conn_support/errors.rb +++ b/lib/web_pipe/conn_support/errors.rb @@ -7,7 +7,7 @@ class KeyNotFoundInBagError < KeyError def initialize(key) super( <<~eos - Bag does not contain a key with name +key+. + Bag does not contain a key with name +#{key}+. eos ) end