------------------------------------------------------------
revno: 1257
committer: Mark Sapiro <[email protected]>
branch nick: 2.1
timestamp: Sun 2010-08-08 13:59:01 -0700
message:
  Fixed web CGI tracebacks to properly report sys.path.  Bug #615114.
modified:
  NEWS
  scripts/driver


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'NEWS'
--- NEWS	2010-07-27 17:14:17 +0000
+++ NEWS	2010-08-08 20:59:01 +0000
@@ -42,6 +42,8 @@
 
   Bug Fixes and other patches
 
+    - Fixed web CGI tracebacks to properly report sys.path.  Bug #615114.
+
     - Changed the member options login page unsubscribe request to include the
       requesters IP address in the confirmation request.  Bug #610527.
 

=== modified file 'scripts/driver'
--- scripts/driver	2009-01-10 20:44:55 +0000
+++ scripts/driver	2010-08-08 20:59:01 +0000
@@ -1,6 +1,6 @@
 # -*- python -*-
 
-# Copyright (C) 1998-2009 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -196,7 +196,7 @@
     print >> logfp, 'sys.executable  =', sys.executable
     print >> logfp, 'sys.prefix      =', sys.prefix
     print >> logfp, 'sys.exec_prefix =', sys.exec_prefix
-    print >> logfp, 'sys.path        =', sys.exec_prefix
+    print >> logfp, 'sys.path        =', sys.path
     print >> logfp, 'sys.platform    =', sys.platform
 
     # Write the same information to the HTML sink.

_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to