Fix golint & gofmt :)

This commit is contained in:
Vincent Demeester 2016-01-22 21:10:14 +01:00
parent 0a8fce39ae
commit e6ae8238aa
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
skopeo skopeo [![Build Status](https://travis-ci.org/runcom/skopeo.svg?branch=master)](https://travis-ci.org/runcom/skopeo)
= =
_Please be aware `skopeo` is still work in progress_ _Please be aware `skopeo` is still work in progress_

View File

@ -107,7 +107,7 @@ func (mf *v1ManifestFetcher) fetchWithSession(ctx context.Context, ref reference
} }
tagList := []string{} tagList := []string{}
for tag, _ := range tagsList { for tag := range tagsList {
tagList = append(tagList, tag) tagList = append(tagList, tag)
} }