hi satish! right now, User.nickname() simply returns the gmail username for gmail.com email addresses, and the full email address for non-gmail.com addresses.
it looks like you might be accidentally converting User objects to strings in at least one or two places in your code. str() of a User object returns User.nickname(), which is probably why you're seeing the @gmail.com part dropped. if you're careful to use .email() and .nickname() instead of implicit string conversions, and you're careful to use a User object in your query, you'll should be able to avoid problems. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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?hl=en -~----------~----~----~----~------~----~------~--~---
