Skip to content

Commit

Permalink
remove date format
Browse files Browse the repository at this point in the history
  • Loading branch information
bzkrouse committed Aug 1, 2017
1 parent 956613f commit 999644c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/CRANsearcher.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ CRANsearcher <- function(){
'<sub> <a href="','http://rdrr.io/cran/',Package,'" style="color:#000000">',2,'</a></sub>')) %>%
rename(`Last release`=Published)

crandb$snapshot_date <- format(Sys.Date(), "%m/%d/%y")
crandb$snapshot_date <- Sys.Date()

} else {
a <- cran_inventory %>%
Expand All @@ -106,7 +106,7 @@ CRANsearcher <- function(){
rename(`Last release`=Published)

crandb$a <- a
crandb$snapshot_date <- format(a$snapshot_date, "%m/%d/%y")
crandb$snapshot_date <- a$snapshot_date

}

Expand Down

0 comments on commit 999644c

Please sign in to comment.