summaryrefslogtreecommitdiffstats
path: root/output
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 /output
parent2d08a296a2de3b3db209a0f44249b7b24733098e (diff)
all: Update import paths to gohugoio/hugo
Diffstat (limited to 'output')
-rw-r--r--output/docshelper.go2
-rw-r--r--output/layout_base.go2
-rw-r--r--output/layout_test.go2
-rw-r--r--output/outputFormat.go2
-rw-r--r--output/outputFormat_test.go2
5 files changed, 5 insertions, 5 deletions
diff --git a/output/docshelper.go b/output/docshelper.go
index 7bd031450..1df45726c 100644
--- a/output/docshelper.go
+++ b/output/docshelper.go
@@ -5,7 +5,7 @@ import (
"fmt"
- "github.com/spf13/hugo/docshelper"
+ "github.com/gohugoio/hugo/docshelper"
)
// This is is just some helpers used to create some JSON used in the Hugo docs.
diff --git a/output/layout_base.go b/output/layout_base.go
index 876746556..fc34b08be 100644
--- a/output/layout_base.go
+++ b/output/layout_base.go
@@ -18,7 +18,7 @@ import (
"path/filepath"
"strings"
- "github.com/spf13/hugo/helpers"
+ "github.com/gohugoio/hugo/helpers"
)
const baseFileBase = "baseof"
diff --git a/output/layout_test.go b/output/layout_test.go
index 6ea5a7617..56aac00d5 100644
--- a/output/layout_test.go
+++ b/output/layout_test.go
@@ -16,7 +16,7 @@ package output
import (
"testing"
- "github.com/spf13/hugo/media"
+ "github.com/gohugoio/hugo/media"
"github.com/stretchr/testify/require"
)
diff --git a/output/outputFormat.go b/output/outputFormat.go
index 0845b5d31..6e5f42930 100644
--- a/output/outputFormat.go
+++ b/output/outputFormat.go
@@ -23,7 +23,7 @@ import (
"github.com/mitchellh/mapstructure"
- "github.com/spf13/hugo/media"
+ "github.com/gohugoio/hugo/media"
)
// Format represents an output representation, usually to a file on disk.
diff --git a/output/outputFormat_test.go b/output/outputFormat_test.go
index 78b2a6096..0540eac08 100644
--- a/output/outputFormat_test.go
+++ b/output/outputFormat_test.go
@@ -17,7 +17,7 @@ import (
"fmt"
"testing"
- "github.com/spf13/hugo/media"
+ "github.com/gohugoio/hugo/media"
"github.com/stretchr/testify/require"
)