Skip to content

Commit

Permalink
fix overlooked variable substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jan 14, 2015
1 parent 4d26631 commit 7e33b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/network/src/modules/NetworkInterfaces.rb
Expand Up @@ -714,7 +714,7 @@ def Read
s = Builtins.substring(s, 1) if Ops.greater_than(Builtins.size(s), 1)
Builtins.y2milestone("%1:%2:%3", val, v, s)
# Global
if !Builtins.contains(_Locals, v)
if !LOCALS.include?(v)
Ops.set(config, val, item)
else
aliases = Ops.get_map(config, "_aliases", {})
Expand Down

0 comments on commit 7e33b33

Please sign in to comment.