Skip to content

Commit

Permalink
Fix key interpolation in KeyNotFoundInBagError
Browse files Browse the repository at this point in the history
  • Loading branch information
waiting-for-dev committed Jul 5, 2019
1 parent 77a7e51 commit f3f4a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/web_pipe/conn_support/errors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f3f4a00

Please sign in to comment.