Skip to content
This repository has been archived by the owner on Jul 4, 2020. It is now read-only.

Commit

Permalink
Fixed timezone to -0300
Browse files Browse the repository at this point in the history
  • Loading branch information
almeida-raphael committed Jun 21, 2020
1 parent 1b53dc6 commit 38b9cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/parser/history_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func parseContentLine(rawLine string, year int) (*models.AssetInfo, error) {
if err != nil {
return nil, err
}
expirationDate, err := time.Parse("20060102 -0700", fmt.Sprintf("%s -3000", rawLine[202:202+8]))
expirationDate, err := time.Parse("20060102 -0700", fmt.Sprintf("%s -0300", rawLine[202:202+8]))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 38b9cc1

Please sign in to comment.