[Pypi-checkins] r987 - trunk/pypi

martin.von.loewis python-checkins at python.org
Sat Nov 19 16:15:47 CET 2011


Author: martin.von.loewis
Date: Sat Nov 19 16:15:46 2011
New Revision: 987

Modified:
   trunk/pypi/store.py
Log:
Fix query parameters.


Modified: trunk/pypi/store.py
==============================================================================
--- trunk/pypi/store.py	(original)
+++ trunk/pypi/store.py	Sat Nov 19 16:15:46 2011
@@ -1906,7 +1906,7 @@
         # store it
         sql = '''insert into openid_sessions
                  (url, assoc_handle, expires, mac_key)
-                 values (%s, %s, %s, %s, %s)'''
+                 values (%s, %s, %s, %s)'''
         safe_execute(cursor, sql, (endpoint,
                                    session['assoc_handle'],
                                    now+datetime.timedelta(0,int(session['expires_in'])),


More information about the Pypi-checkins mailing list