Skip to content

Commit

Permalink
Hardcode 2017 as copyright year in github-accessors.go. (#825)
Browse files Browse the repository at this point in the history
Fixes #823.
  • Loading branch information
dmitshur committed Jan 9, 2018
1 parent cbeb72e commit c988f77
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions github/gen-accessors.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import (
"sort"
"strings"
"text/template"
"time"
)

const (
Expand Down Expand Up @@ -71,7 +70,7 @@ func main() {
for pkgName, pkg := range pkgs {
t := &templateData{
filename: pkgName + fileSuffix,
Year: time.Now().Year(),
Year: 2017,
Package: pkgName,
Imports: map[string]string{},
}
Expand Down

0 comments on commit c988f77

Please sign in to comment.