Merge pull request #86 from cmasone-attic/issue82

Fix typo that makes pitchmap/index ignore all pitches
This commit is contained in:
cmasone-attic
2015-07-20 16:55:33 -07:00
+1 -1
View File
@@ -36,7 +36,7 @@ func processPitcher(m types.Map) (id, name types.String) {
}
func checkPitch(v types.Map) bool {
return v.Get(types.NewString("-px")) != nil && v.Get(types.NewString("-pxz")) != nil
return v.Get(types.NewString("-px")) != nil && v.Get(types.NewString("-pz")) != nil
}
func toPitch(v types.Map) Pitch {