Skip to content

Commit

Permalink
Fixed error message in powertrains and fuels for optional file
Browse files Browse the repository at this point in the history
  • Loading branch information
jrawbits committed May 13, 2024
1 parent 3d738a5 commit ffbd1fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sources/modules/VEPowertrainsAndFuels/R/Initialize.R
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ Initialize <- function(L) {
}
} else {
Msg <- paste0(
"marea_transit_fuel.csv input file is present but not complete (Missing VanProp...ev)"
"marea_transit_powertrain_prop.csv input file is present but not complete (Missing VanProp...ev)"
)
Errors_ <- c(Errors_, Msg)
}
Expand All @@ -626,7 +626,7 @@ Initialize <- function(L) {
}
} else {
Msg <- paste0(
"marea_transit_fuel.csv input file is present but not complete (missing BusBrop...ev)"
"marea_transit_powertrain_prop.csv input file is present but not complete (missing BusBrop...ev)"
)
Errors_ <- c(Errors_, Msg)
}
Expand All @@ -648,7 +648,7 @@ Initialize <- function(L) {
}
} else {
Msg <- paste0(
"marea_transit_fuel.csv input file is present but not complete (missing RailProp...ev)"
"marea_transit_powertrain_prop.csv input file is present but not complete (missing RailProp...ev)"
)
Errors_ <- c(Errors_, Msg)
}
Expand Down

0 comments on commit ffbd1fc

Please sign in to comment.