> where there is a form which doesn't work with foreign characters that
> are needed. Here's the code, maybe we can tell python to respect
> unicode?
> Thank you
> class Recommend(webapp.RequestHandler):
> def post(self, key):
> im = db.get(db.Key(key))
> if os.environ.get('HTTP_HOST'):
> url = os.environ['HTTP_HOST']
> else:
> url = os.environ['SERVER_NAME']
> email = self.request.POST['tip_email']
> msg = self.request.POST['tip_msg']
> name = self.request.POST['tip_name']