Skip to content

Commit

Permalink
Merge pull request opencontainers#782 from odinuge/lint-issue
Browse files Browse the repository at this point in the history
Fix linting error
  • Loading branch information
vbatts authored Aug 21, 2019
2 parents da296dc + 042b4d7 commit ae1010f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: go
go:
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x

sudo: required

Expand Down
2 changes: 1 addition & 1 deletion schema/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (factory *fsLoaderFactory) refContents(ref gojsonreference.JsonReference) (
}
}
if path == "" {
return nil, fmt.Errorf("Schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces)
return nil, fmt.Errorf("schema reference %#v unexpectedly not available in fsLoaderFactory with namespaces %#v", path, factory.namespaces)
}

f, err := factory.fs.Open(path)
Expand Down

0 comments on commit ae1010f

Please sign in to comment.