summaryrefslogtreecommitdiff
path: root/management/manager
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-09 16:27:33 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-09 16:27:33 -0700
commita7f5427fee80fd638e012de5cfeb48d5be54cbcf (patch)
tree658014a3eada5009de87f31b8c81a47781923d9b /management/manager
parent3b7e6a4cdbda6193cf45b0e60332ca16e68e0010 (diff)
renaming import paths globally to ensure build is using new files, not ones from original repo
Diffstat (limited to 'management/manager')
-rw-r--r--management/manager/manager.go2
-rw-r--r--management/manager/process.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/management/manager/manager.go b/management/manager/manager.go
index c0056ac..67cf051 100644
--- a/management/manager/manager.go
+++ b/management/manager/manager.go
@@ -5,7 +5,7 @@ import (
"fmt"
"html/template"
- "github.com/bosssauce/ponzu/management/editor"
+ "../editor"
)
const managerHTML = `
diff --git a/management/manager/process.go b/management/manager/process.go
index f34bebd..153f8d9 100644
--- a/management/manager/process.go
+++ b/management/manager/process.go
@@ -5,7 +5,8 @@ import (
"strings"
"unicode"
- "github.com/bosssauce/ponzu/management/editor"
+ "../editor"
+
"golang.org/x/text/transform"
"golang.org/x/text/unicode/norm"
)