R=r
https://golang.org/cl/157053
# The author is just a nickname: get the real email address.
try:
- data = MySend("/user_popup/" + nick, force_auth=False)
+ # want URL-encoded nick, but without a=, and rietveld rejects + for %20.
+ url = "/user_popup/" + urllib.urlencode({"a": nick})[2:].replace("+", "%20")
+ data = MySend(url, force_auth=False)
except:
ui.warn("error looking up %s: %s\n" % (nick, ExceptionDetail()))
cl.original_author = nick+"@needtofix"