summaryrefslogtreecommitdiffstats
path: root/tpl/data
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/data')
-rw-r--r--tpl/data/cache.go4
-rw-r--r--tpl/data/data.go2
-rw-r--r--tpl/data/init.go4
-rw-r--r--tpl/data/init_test.go4
-rw-r--r--tpl/data/resources.go4
-rw-r--r--tpl/data/resources_test.go8
6 files changed, 13 insertions, 13 deletions
diff --git a/tpl/data/cache.go b/tpl/data/cache.go
index 37990f124..a9b0f0138 100644
--- a/tpl/data/cache.go
+++ b/tpl/data/cache.go
@@ -19,8 +19,8 @@ import (
"sync"
"github.com/spf13/afero"
- "github.com/spf13/hugo/config"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/config"
+ "github.com/gohugoio/hugo/helpers"
)
var cacheMu sync.RWMutex
diff --git a/tpl/data/data.go b/tpl/data/data.go
index ae0c7c216..0c75fdbb7 100644
--- a/tpl/data/data.go
+++ b/tpl/data/data.go
@@ -22,7 +22,7 @@ import (
"strings"
"time"
- "github.com/spf13/hugo/deps"
+ "github.com/gohugoio/hugo/deps"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/tpl/data/init.go b/tpl/data/init.go
index 5235714e9..3bdc02786 100644
--- a/tpl/data/init.go
+++ b/tpl/data/init.go
@@ -14,8 +14,8 @@
package data
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 = "data"
diff --git a/tpl/data/init_test.go b/tpl/data/init_test.go
index 66bb0b2be..6bb689a95 100644
--- a/tpl/data/init_test.go
+++ b/tpl/data/init_test.go
@@ -16,8 +16,8 @@ package data
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/data/resources.go b/tpl/data/resources.go
index 4a82cccab..bc9d4b7c4 100644
--- a/tpl/data/resources.go
+++ b/tpl/data/resources.go
@@ -22,8 +22,8 @@ import (
"time"
"github.com/spf13/afero"
- "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/tpl/data/resources_test.go b/tpl/data/resources_test.go
index 42d719184..31e782362 100644
--- a/tpl/data/resources_test.go
+++ b/tpl/data/resources_test.go
@@ -24,10 +24,10 @@ import (
"time"
"github.com/spf13/afero"
- "github.com/spf13/hugo/config"
- "github.com/spf13/hugo/deps"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/config"
+ "github.com/gohugoio/hugo/deps"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"