Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/create
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 19:42:45 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 19:42:45 +0300
commitd8717cd4c74e80ea8e20adead9321412a2d76022 (patch)
tree50b934ea1c1b67ac0911785c273027eca3e4894c /create
parent2d08a296a2de3b3db209a0f44249b7b24733098e (diff)
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'create')
-rw-r--r--create/content.go6
-rw-r--r--create/content_test.go10
2 files changed, 8 insertions, 8 deletions
diff --git a/create/content.go b/create/content.go
index 5cab4289b..c51d1f9bd 100644
--- a/create/content.go
+++ b/create/content.go
@@ -24,9 +24,9 @@ import (
"github.com/spf13/afero"
"github.com/spf13/cast"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugolib"
- "github.com/spf13/hugo/parser"
+ "github.com/gohugoio/hugo/helpers"
+ "github.com/gohugoio/hugo/hugolib"
+ "github.com/gohugoio/hugo/parser"
jww "github.com/spf13/jwalterweatherman"
)
diff --git a/create/content_test.go b/create/content_test.go
index 4ef230202..9728c1c96 100644
--- a/create/content_test.go
+++ b/create/content_test.go
@@ -19,17 +19,17 @@ import (
"strings"
"testing"
- "github.com/spf13/hugo/deps"
+ "github.com/gohugoio/hugo/deps"
- "github.com/spf13/hugo/hugolib"
+ "github.com/gohugoio/hugo/hugolib"
"fmt"
- "github.com/spf13/hugo/hugofs"
+ "github.com/gohugoio/hugo/hugofs"
"github.com/spf13/afero"
- "github.com/spf13/hugo/create"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/create"
+ "github.com/gohugoio/hugo/helpers"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"
)