diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-06 14:18:34 +0100 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-11-06 11:18:34 -0200 |
commit | 6e4252dad4d162fb582c012efecd29e9fdf5819c (patch) | |
tree | 3aa10bee3fd9f96e042cd299f0d8756abc5dc431 /routers/repo/wiki.go | |
parent | 55a4d46f5d2aa114752ac3880d0d75ed288fea67 (diff) | |
download | gitea-6e4252dad4d162fb582c012efecd29e9fdf5819c.tar.gz gitea-6e4252dad4d162fb582c012efecd29e9fdf5819c.zip |
Replace gogits/git-module dependency with go-gitea/git (#94)
* Replace gogits/git-module dependency with go-gitea/git
Fixes #92
* Remove git alias for git module import (not needed)
Diffstat (limited to 'routers/repo/wiki.go')
-rw-r--r-- | routers/repo/wiki.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/wiki.go b/routers/repo/wiki.go index 4043a96bee..b930ab07ac 100644 --- a/routers/repo/wiki.go +++ b/routers/repo/wiki.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/gogits/git-module" + "github.com/go-gitea/git" "github.com/go-gitea/gitea/models" "github.com/go-gitea/gitea/modules/auth" |