[Mailman-Developers] Upgrading from 2.0.10 to 2.1.b2

Barry A. Warsaw barry@zope.com
Mon, 6 May 2002 21:09:12 -0400


>>>>> "DG" == David Gibbs <david@midrange.com> writes:

    DG> I'm trying to give MM 2.1b2 a few tests, but cannot get any of
    DG> my existing mailing lists converted (I'm just trying to
    DG> convert some test and internal lists).

I just migrated mailman-developers to MM2.1b2 and hit the same
problem.  Attached is a fix, which will require a quick b3 release.

If this message goes through, it's a good sign the upgrade went
well. :)  If so, I'll post instructions momentarily.

-Barry

-------------------- snip snip --------------------
Index: MailList.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/MailList.py,v
retrieving revision 2.76
diff -u -r2.76 MailList.py
--- MailList.py	2 May 2002 03:07:48 -0000	2.76
+++ MailList.py	7 May 2002 01:07:49 -0000
@@ -571,8 +571,8 @@
         # mailing list object, then run sanity check on the data.
         self.__dict__.update(dict)
         if check_version:
-            self.CheckValues()
             self.CheckVersion(dict)
+            self.CheckValues()
 
 
     #