fixing windows est abbr

This commit is contained in:
Will Charczuk 2017-02-12 14:09:00 -08:00 committed by GitHub
parent 1584e50483
commit 00799114fa

View File

@ -10,7 +10,7 @@ func (d date) Eastern() *time.Location {
_easternLock.Lock() _easternLock.Lock()
defer _easternLock.Unlock() defer _easternLock.Unlock()
if _eastern == nil { if _eastern == nil {
_eastern, _ = time.LoadLocation("Eastern Standard Time") _eastern, _ = time.LoadLocation("EST")
} }
} }
return _eastern return _eastern