App Engine List<String> DB adds chars before string?
Posted
by Donalds
on Stack Overflow
See other posts from Stack Overflow
or by Donalds
Published on 2010-04-24T13:23:02Z
Indexed on
2010/04/24
14:23 UTC
Read the original article
Hit count: 159
google-app-engine
Hi,
I have a field in my db which is a List.
I add strings to that list and it works fine on the development server.
This is the result: [mat12, bg10]
When I do the same on the deploy server, this is the result: [u'mat12', u'bg10']
I don't understand why it adds "u' '" to the string.
I would really appreciate your help.
Thanks
© Stack Overflow or respective owner