From 0123c1dcb42d0ad9cd773ba50b05f8dffd50cb3a 2016-04-24 15:14:39 From: Jean-Philippe Lang Date: 2016-04-24 15:14:39 Subject: [PATCH] Merged r15357 (#22583). git-svn-id: http://svn.redmine.org/redmine/branches/3.2-stable@15358 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/import.rb b/app/models/import.rb index 127f7be..22b90b6 100644 --- a/app/models/import.rb +++ b/app/models/import.rb @@ -51,7 +51,7 @@ class Import < ActiveRecord::Base separator = lu(user, :general_csv_separator) if file_exists? begin - content = File.read(filepath, 256, "rb") + content = File.read(filepath, 256) separator = [',', ';'].sort_by {|sep| content.count(sep) }.last rescue Exception => e end