1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Revert to upstream ini dependency (#2304)

This commit is contained in:
Ethan Koenig
2017-08-14 06:37:41 -07:00
committed by Andrey Nering
parent fc29a405e8
commit c76ee5688b
2 changed files with 5 additions and 6 deletions

4
vendor/gopkg.in/ini.v1/ini.go generated vendored
View File

@@ -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
}