diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-06-13 18:42:45 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-06-13 18:42:45 +0200 |
commit | d8717cd4c74e80ea8e20adead9321412a2d76022 (patch) | |
tree | 50b934ea1c1b67ac0911785c273027eca3e4894c /i18n | |
parent | 2d08a296a2de3b3db209a0f44249b7b24733098e (diff) | |
download | hugo-d8717cd4c74e80ea8e20adead9321412a2d76022.tar.gz hugo-d8717cd4c74e80ea8e20adead9321412a2d76022.zip |
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'i18n')
-rw-r--r-- | i18n/i18n.go | 4 | ||||
-rw-r--r-- | i18n/i18n_test.go | 2 | ||||
-rw-r--r-- | i18n/translationProvider.go | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/i18n/i18n.go b/i18n/i18n.go index 6b8b92ce3..c7f8b5827 100644 --- a/i18n/i18n.go +++ b/i18n/i18n.go @@ -15,8 +15,8 @@ package i18n import ( "github.com/nicksnyder/go-i18n/i18n/bundle" - "github.com/spf13/hugo/config" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/config" + "github.com/gohugoio/hugo/helpers" jww "github.com/spf13/jwalterweatherman" ) diff --git a/i18n/i18n_test.go b/i18n/i18n_test.go index 63e09ec8a..4793541db 100644 --- a/i18n/i18n_test.go +++ b/i18n/i18n_test.go @@ -22,7 +22,7 @@ import ( "log" "github.com/nicksnyder/go-i18n/i18n/bundle" - "github.com/spf13/hugo/config" + "github.com/gohugoio/hugo/config" jww "github.com/spf13/jwalterweatherman" "github.com/spf13/viper" "github.com/stretchr/testify/require" diff --git a/i18n/translationProvider.go b/i18n/translationProvider.go index 34558cffb..c0d39c4a2 100644 --- a/i18n/translationProvider.go +++ b/i18n/translationProvider.go @@ -17,8 +17,8 @@ import ( "fmt" "github.com/nicksnyder/go-i18n/i18n/bundle" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/source" ) // TranslationProvider provides translation handling, i.e. loading |