| Index: service/datastore/properties.go
|
| diff --git a/service/datastore/properties.go b/service/datastore/properties.go
|
| index 44a4361ed895051e1516fb364d810027acfb0952..63156fe68da97b5f7ddf9f4c4600aa2c53861d49 100644
|
| --- a/service/datastore/properties.go
|
| +++ b/service/datastore/properties.go
|
| @@ -209,7 +209,7 @@ func PropertyTypeOf(v interface{}, checkValid bool) (PropertyType, error) {
|
| err = errors.New("time value out of range")
|
| }
|
| if checkValid && !timeLocationIsUTC(x.Location()) {
|
| - err = fmt.Errorf("time value has wrong Location: %v %v", x.Location())
|
| + err = fmt.Errorf("time value has wrong Location: %v", x.Location())
|
| }
|
| return PTTime, err
|
| case GeoPoint:
|
|
|