Skip to content

Commit

Permalink
Scope is now passed to parse_answer method instead of nil
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Poulton committed Jun 26, 2013
1 parent 9b687b8 commit 9b20b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/hiera/backend/eyaml_backend.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def lookup(key, scope, order_override, resolution_type)
next unless data.include?(key)
debug ("Key #{key} found in YAML document")

parsed_answer = parse_answer(data[key], nil)
parsed_answer = parse_answer(data[key], scope)

begin
case resolution_type
Expand Down

0 comments on commit 9b20b33

Please sign in to comment.