summaryrefslogtreecommitdiffstats
path: root/tpl/lang
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:42:45 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 18:42:45 +0200
commitd8717cd4c74e80ea8e20adead9321412a2d76022 (patch)
tree50b934ea1c1b67ac0911785c273027eca3e4894c /tpl/lang
parent2d08a296a2de3b3db209a0f44249b7b24733098e (diff)
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'tpl/lang')
-rw-r--r--tpl/lang/init.go4
-rw-r--r--tpl/lang/init_test.go4
-rw-r--r--tpl/lang/lang.go2
-rw-r--r--tpl/lang/lang_test.go2
4 files changed, 6 insertions, 6 deletions
diff --git a/tpl/lang/init.go b/tpl/lang/init.go
index d0efa6997..6a23cdc4c 100644
--- a/tpl/lang/init.go
+++ b/tpl/lang/init.go
@@ -14,8 +14,8 @@
package lang
import (
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/tpl/internal"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/tpl/internal"
)
const name = "lang"
diff --git a/tpl/lang/init_test.go b/tpl/lang/init_test.go
index a32fa0ae4..fc4893ad0 100644
--- a/tpl/lang/init_test.go
+++ b/tpl/lang/init_test.go
@@ -16,8 +16,8 @@ package lang
import (
"testing"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/tpl/internal"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/tpl/internal"
"github.com/stretchr/testify/require"
)
diff --git a/tpl/lang/lang.go b/tpl/lang/lang.go
index 45a640d7a..0442e4dec 100644
--- a/tpl/lang/lang.go
+++ b/tpl/lang/lang.go
@@ -20,7 +20,7 @@ import (
"strings"
"github.com/spf13/cast"
- "github.com/spf13/hugo/deps"
+ "github.com/gohugoio/hugo/deps"
)
// New returns a new instance of the lang-namespaced template functions.
diff --git a/tpl/lang/lang_test.go b/tpl/lang/lang_test.go
index 45ed506b7..c494fd03a 100644
--- a/tpl/lang/lang_test.go
+++ b/tpl/lang/lang_test.go
@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
- "github.com/spf13/hugo/deps"
+ "github.com/gohugoio/hugo/deps"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)