I am using this standard code from documentation
http://code.google.com/appengine/docs/python/users/overview.html:

if user:
    greeting = ("""%s (<a href="\%s\">sign out</a>)""" %
                   (user.nickname(), users.create_logout_url("/")))
else:
    greeting = ("""<a href="\%s\">Sign in or register</a>.""" %
                   users.create_login_url("/"))

but I get broken link error.

Is this related to this issue? 
http://code.google.com/p/googleappengine/issues/detail?id=353
Is there a fix? Or am I doing something wrong?

-- 
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.

Reply via email to