[Mailman-Users] bin/newlist -> ImportError: No module named None

Barry A. Warsaw barry at python.org
Sat Feb 8 17:28:53 CET 2003


>>>>> "MJ" == Matthias Juchem <lists at konfido.de> writes:

    MJ> MTA = 'None'

Whoops!  None is a special value in Python and shouldn't be quoted.
Change that to

    MTA = None

and you should be good to go.
-Barry



More information about the Mailman-Users mailing list