Hello all,
I've tryed to install the latest CVS update of today, but when I do a 'make install' I get the following error:
Traceback (most recent call last): File "bin/update", line 47, in ? from Mailman import MailList File "/home/mailman/Mailman/MailList.py", line 58, in ? from Mailman.SecurityManager import SecurityManager File "/home/mailman/Mailman/SecurityManager.py", line 62, in ? from Cookie import SimpleCookie as Cookie ImportError: cannot import name SimpleCookie make: *** [update] Error 1
Any idea? All the Web UI reports the same error! :-(
--luca
It seems that the problem is in Mailman/SecurityManager.py, I've tryed to substitute this line
from Cookie import SimpleCookie as Cookie
with this
import Cookie
and now at least something is working again, but obviously all the Web authentication is broken.
BTW, python 2.0.1.
--luca
On Sat, Nov 24, 2001 at 06:20:19PM +0100, Luca Maranzano wrote:
Hello all,
I've tryed to install the latest CVS update of today, but when I do a 'make install' I get the following error:
Traceback (most recent call last): File "bin/update", line 47, in ? from Mailman import MailList File "/home/mailman/Mailman/MailList.py", line 58, in ? from Mailman.SecurityManager import SecurityManager File "/home/mailman/Mailman/SecurityManager.py", line 62, in ? from Cookie import SimpleCookie as Cookie ImportError: cannot import name SimpleCookie make: *** [update] Error 1
Any idea? All the Web UI reports the same error! :-(
--luca
Mailman-Developers mailing list Mailman-Developers@python.org http://mail.python.org/mailman/listinfo/mailman-developers
Just remove $prefix/Mailman/Cookie.py and Cookie.pyc so you'll pick up the Python standard version. The bin/update script in cvs has been fixed to delete these files automatically on next upgrade.
-Barry
participants (2)
-
barry@zope.com
-
Luca Maranzano