You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by jg...@apache.org on 2007/11/09 22:33:32 UTC

svn commit: r593658 - /httpd/mod_python/trunk/lib/python/mod_python/Session.py

Author: jgallacher
Date: Fri Nov  9 13:33:31 2007
New Revision: 593658

URL: http://svn.apache.org/viewvc?rev=593658&view=rev
Log:
(MODPYTHON-243) Fixed format string error.

Modified:
    httpd/mod_python/trunk/lib/python/mod_python/Session.py

Modified: httpd/mod_python/trunk/lib/python/mod_python/Session.py
URL: http://svn.apache.org/viewvc/httpd/mod_python/trunk/lib/python/mod_python/Session.py?rev=593658&r1=593657&r2=593658&view=diff
==============================================================================
--- httpd/mod_python/trunk/lib/python/mod_python/Session.py (original)
+++ httpd/mod_python/trunk/lib/python/mod_python/Session.py Fri Nov  9 13:33:31 2007
@@ -703,7 +703,7 @@
             total_time = 0.0
         else:
             req.log_error("FileSession cleanup incomplete: next cleanup will start at index %d (%02x)"
-                        % (next_i,),
+                        % (next_i, next_i),
                         apache.APLOG_NOTICE)
 
         status_file = file(os.path.join(sessdir, 'fs_status.txt'), 'w')