Skip to content

Commit

Permalink
fix copy/paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DrEspresso committed May 13, 2024
1 parent 04a4fea commit f11a958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read_export_options.R
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ read_export_options <- function(data_dir) {
header <- readLines(file.path(data_dir, files$Name[!grepl("html$", files$Name)][1]), 1)
}
quote <- substr(header, 1, 1)
header <- gsub(quote,1,1)
header <- gsub(quote, "" , header)
if (grepl(",", header)) {
sep <- ","
} else if (grepl("'", header)) {
Expand Down

0 comments on commit f11a958

Please sign in to comment.