Skip to content

Commit

Permalink
Merge pull request #20 from aschnell/master
Browse files Browse the repository at this point in the history
- fixed variable lookup (bnc#862752)
  • Loading branch information
aschnell committed Feb 10, 2014
2 parents 9573a5a + 6b14eee commit 2231c26
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions package/yast2-storage.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Feb 10 11:16:54 CET 2014 - aschnell@suse.de

- fixed variable lookup (bnc#862752)

-------------------------------------------------------------------
Wed Feb 05 18:12:05 CET 2014 - aschnell@suse.de

Expand Down
2 changes: 1 addition & 1 deletion src/modules/Storage.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2992,7 +2992,7 @@ def ChangeVolumeProperties(part)
changed = true
d = part.fetch("device", "")
userdata = ::Storage::MapStringString.new()
part["userdata"].each do |a, b|
part.fetch("userdata", {}).each do |a, b|
userdata[a]= b
end
Builtins.y2milestone("ChangeVolumeProperties userdata to %1", userdata.to_s)
Expand Down

0 comments on commit 2231c26

Please sign in to comment.