Skip to content

Commit

Permalink
Fix import host pools (#8281)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoMaio committed May 16, 2024
1 parent 7156696 commit 1e51775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lua/rest/v2/import/pool/host_pool/members.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ local lines = split(members_file_content, "\n")

local members = {}
for _,line in ipairs(lines) do
local splitted_line = split(line,"__")
local splitted_line = split(line,"_")
for _,member in ipairs(splitted_line) do
members[#members+1] = member
end
Expand Down

0 comments on commit 1e51775

Please sign in to comment.