This commit is contained in:
lordwelch 2017-11-06 23:03:20 -07:00
parent dfef41b847
commit 27e87bac62

View File

@ -110,7 +110,11 @@ func main() {
panic(err)
}
json.Unmarshal(content, tmp)
err = json.Unmarshal(content, tmp)
if err != nil {
panic(err)
}
fmt.Println(strings.TrimSuffix(file.Name(), ext))
keys[strings.TrimSuffix(file.Name(), ext)] = tmp
T.Close()