summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in
diff options
context:
space:
mode:
authorEthan Koenig <etk39@cornell.edu>2017-08-14 06:37:41 -0700
committerAndrey Nering <andrey.nering@gmail.com>2017-08-14 10:37:41 -0300
commitc76ee5688b6b2c907e325914987fcca2c1086c9e (patch)
treec6cdd98fd53b8a51a7e41435ecbc1436e9f1d7c3 /vendor/gopkg.in
parentfc29a405e8c210fa62ad4cbe4250617e4b85d6c8 (diff)
downloadgitea-c76ee5688b6b2c907e325914987fcca2c1086c9e.tar.gz
gitea-c76ee5688b6b2c907e325914987fcca2c1086c9e.zip
Revert to upstream ini dependency (#2304)
Diffstat (limited to 'vendor/gopkg.in')
-rw-r--r--vendor/gopkg.in/ini.v1/ini.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gopkg.in/ini.v1/ini.go b/vendor/gopkg.in/ini.v1/ini.go
index 84faae13bb..7f3c4d1ed1 100644
--- a/vendor/gopkg.in/ini.v1/ini.go
+++ b/vendor/gopkg.in/ini.v1/ini.go
@@ -35,7 +35,7 @@ const (
// Maximum allowed depth when recursively substituing variable names.
_DEPTH_VALUES = 99
- _VERSION = "1.28.1"
+ _VERSION = "1.28.2"
)
// Version returns current package version literal.
@@ -542,7 +542,7 @@ func (f *File) WriteTo(w io.Writer) (int64, error) {
func (f *File) SaveToIndent(filename, indent string) error {
// Note: Because we are truncating with os.Create,
// so it's safer to save to a temporary file location and rename afte done.
- buf, err := f.writeToBuffer(indent);
+ buf, err := f.writeToBuffer(indent)
if err != nil {
return err
}