diff options
author | Colin Arnott <carnott@snapchat.com> | 2019-10-15 21:24:16 +0000 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-10-15 22:24:16 +0100 |
commit | 66e99d722a71d12b81264bc3577b85febe40e49e (patch) | |
tree | 99e4906ab068e35b393dbf7b941405127fd283fe /modules/context | |
parent | 80655026d2cc8e56223be546a5ed46634eafa059 (diff) | |
download | gitea-66e99d722a71d12b81264bc3577b85febe40e49e.tar.gz gitea-66e99d722a71d12b81264bc3577b85febe40e49e.zip |
upgrade gopkg.in/editorconfig/editorconfig-core-go.v1 (#8501)
editorconfig-core-go made breaking api changes and has recently released
v2.1.1. This change consumes the new api and fixes up any breaking
references.
Diffstat (limited to 'modules/context')
-rw-r--r-- | modules/context/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go index f4af19a0e8..e891e7b85c 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -19,8 +19,8 @@ import ( "code.gitea.io/gitea/modules/setting" "gitea.com/macaron/macaron" + "github.com/editorconfig/editorconfig-core-go/v2" "github.com/unknwon/com" - "gopkg.in/editorconfig/editorconfig-core-go.v1" ) // PullRequest contains informations to make a pull request |