[TiagoP]
> 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.

That's python's way of representing a unicode string, i.e.

Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> s = "Hello World"
>>> us = unicode(s)
>>> s
'Hello World'
>>> us
u'Hello World'

Alan.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to