1
0
Fork 0

fix default separator

This commit is contained in:
Jan Steemann 2016-06-15 18:24:10 +02:00
parent 78cb376b89
commit 33b40e3bf6
1 changed files with 2 additions and 3 deletions

View File

@ -237,9 +237,8 @@ void ImportFeature::start() {
}
if (_separator.empty()) {
if (_typeImport == "csv") {
_separator = ",";
} else if (_typeImport == "tsv") {
_separator = ",";
if (_typeImport == "tsv") {
_separator = "\\t";
}
}