Skip to content

Commit

Permalink
- fixed typo (variable name and log message)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschnell committed Sep 29, 2015
1 parent fa77304 commit b1ee477
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions package/yast2-installation.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Sep 29 14:40:13 CEST 2015 - aschnell@suse.com

- fixed typo

-------------------------------------------------------------------
Fri Sep 4 07:07:33 UTC 2015 - jsrain@suse.cz

Expand Down
6 changes: 3 additions & 3 deletions src/lib/installation/clients/inst_pre_install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ def Initialize
device_names = restrict_disk_names.call(device_names)
Builtins.foreach(device_names) do |device_name|
device_descr = Ops.get(target_map, device_name, {})
partitons = Ops.get_list(device_descr, "partitions", [])
partitions = Ops.get_list(device_descr, "partitions", [])
filesystem = nil
devicename = nil
Builtins.foreach(partitons) do |partition|
Builtins.foreach(partitions) do |partition|
filesystem = Ops.get_symbol(
partition,
"used_fs",
Expand Down Expand Up @@ -328,7 +328,7 @@ def Initialize
end
end

Builtins.y2milestone("Possible partitons: %1", @useful_partitions)
Builtins.y2milestone("Possible partitions: %1", @useful_partitions)

nil
end
Expand Down
2 changes: 1 addition & 1 deletion src/modules/SystemFilesCopy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def Initialize
#
# **Structure:**
#
# partiton == "/dev/sdb4"
# partition == "/dev/sdb4"
#
# **Structure:**
#
Expand Down

0 comments on commit b1ee477

Please sign in to comment.