Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
unquote
Browse files Browse the repository at this point in the history
  • Loading branch information
davemeehan committed Sep 19, 2012
1 parent d815139 commit e23ba6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion neo4j.go
Expand Up @@ -698,8 +698,9 @@ func (this *Neo4j) unmarshalNode(template map[string]interface{}) (*NeoTemplate,
case "data":
//node.Data = vv
var uqData map[string]interface{}

for dk, dv := range vv {
append(uqData, {dk: strconv.Unquote(string(dv))})
uqData[dk] = strconv.Unquote(string(dv))
}
log.Printf("uqData is: %#v",uqData)
/*
Expand Down

0 comments on commit e23ba6c

Please sign in to comment.