Merge pull request #19945 from Clarifai/fix-formatting

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2016-02-09 16:05:00 -08:00
8 changed files with 9 additions and 9 deletions

View File

@@ -84,7 +84,7 @@ func main() {
util.InitFlags()
if !knownMorphs.Has(config.Morph) {
glog.Fatal("Unknown morph: %v. Allowed values: %v", config.Morph, knownMorphs.List())
glog.Fatalf("Unknown morph: %v. Allowed values: %v", config.Morph, knownMorphs.List())
}
// create a client to communicate with API server.

View File

@@ -98,7 +98,7 @@ func main() {
if err != nil {
glog.Fatalf("Error: %v", err)
}
glog.Info("going to generate clientset from these input paths: %v", inputPath)
glog.Infof("going to generate clientset from these input paths: %v", inputPath)
arguments.InputDirs = append(inputPath, dependencies...)
// TODO: we need to make OutPackagePath a map[string]string. For example,
// we need clientset and the individual typed clients be output to different