Skip to content

Commit

Permalink
DBP-1028 Set column separator to semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncolincap committed Nov 18, 2024
1 parent a0cea29 commit d701370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/room.rake
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace :room do
args.with_defaults(dryrun: 'false')
info "Validating whole CSV file first"
rooms = []
CSV.foreach(args[:file], headers: true) do |room|
CSV.foreach(args[:file], headers: true, col_sep: ";") do |room|
info "#{room['Raumname']}"
argmap = {
:name => 'raumname',
Expand Down

0 comments on commit d701370

Please sign in to comment.