summaryrefslogtreecommitdiffstats
path: root/hugolib
diff options
context:
space:
mode:
authorJorin Vogel <hi@jorin.me>2017-08-01 12:17:51 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-08-01 13:05:09 +0200
commit09907d36af586c5b29389312f2ecc2962c06313c (patch)
treebe91bed20ce9f484344133c36595a6c9ca667a3f /hugolib
parent8fb594bfb090c017d4e5cbb2905780221e202c41 (diff)
Switch from fork bep/inflect to markbates/inflect
Original package has received updates the fork hasn't. Without fork updates are easier to maintain.
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/site.go2
-rw-r--r--hugolib/site_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/hugolib/site.go b/hugolib/site.go
index 629881856..8bf37e17d 100644
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -32,7 +32,7 @@ import (
"github.com/gohugoio/hugo/media"
- "github.com/bep/inflect"
+ "github.com/markbates/inflect"
"sync/atomic"
diff --git a/hugolib/site_test.go b/hugolib/site_test.go
index 6bcfaa441..bffdec1a9 100644
--- a/hugolib/site_test.go
+++ b/hugolib/site_test.go
@@ -19,7 +19,7 @@ import (
"strings"
"testing"
- "github.com/bep/inflect"
+ "github.com/markbates/inflect"
jww "github.com/spf13/jwalterweatherman"
"github.com/gohugoio/hugo/helpers"