# HG changeset patch # User Pawel Solyga # Date 1223801021 0 # Node ID 5d6d106afb23d0fe3c3910ac6ef585d75d26cf34 # Parent d36b597ef29da1a9d773b289299c5a402a6f9c5a Fix not working isIdDeveloper() function after recent commit. There is still confusion within getFormFields method (email is not id), but this change doesn't address that problem. Patch by: Pawel Solyga Review by: to-be-reviewed diff -r d36b597ef29d -r 5d6d106afb23 app/soc/logic/site/id_user.py --- a/app/soc/logic/site/id_user.py Sun Oct 12 01:08:41 2008 +0000 +++ b/app/soc/logic/site/id_user.py Sun Oct 12 08:43:41 2008 +0000 @@ -90,7 +90,7 @@ if not id: id = current_id - user = soc.logic.user_logic.getFromFields(id=id) + user = soc.logic.user_logic.getFromFields(email=id) if not user: # no User entity for this Google Account, and id is not the currently