This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [PyPI] Password reset problem.
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: dsuch, jafo
Priority: normal Keywords:

Created on 2005-04-05 13:56 by dsuch, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg24888 - (view) Author: Dariusz Suchojad (dsuch) Date: 2005-04-05 13:56
Hello, the URL for reseting a password to PyPI is
http://www.python.org/pypi?:action=password_reset&email=my@email.
However, this page yields a message
"""
Error...

There's been a problem with your request

psycopg.ProgrammingError: ERROR:  syntax error at or
near "where" at character 104

update users set
password='6c2105e62b35507733ee49fdaed9815022b324e6',
email='my@email', where name='myname'
"""

Clearly, there's a superfluous comma before 'where name='.

I'm filling this bug report per request from
webmaster'python'org.

msg24889 - (view) Author: Sean Reifschneider (jafo) * (Python committer) Date: 2005-04-06 03:24
Logged In: YES 
user_id=81797

I know Brett told you to submit it here, but I can't imagine
why that would be more appropriate than using your first
instinct and submitting it to the pypi tracker.

It looks like the bug is on line 602 of "store.py", change
", where" to " where"

Sean
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41807
2005-04-05 13:56:10dsuchcreate