------------------------------------------------------------
revno: 1046
committer: Mark Sapiro <[email protected]>
branch nick: 2.2
timestamp: Sat 2009-03-14 15:10:41 -0700
message:
   - Changed some old messages for more current meaning.
   - Fixed qfiles update to not lose metadata from 2.1.5+ format entries.
   - Fixed 2.0.x template migration to not die if the templates/ tree contains
     subdirectories from a version control system.
modified:
  bin/update

=== modified file 'bin/update'
--- bin/update  2008-11-13 04:02:29 +0000
+++ bin/update  2009-03-14 22:10:41 +0000
@@ -1,6 +1,6 @@
-#! @PYTHON@
+#! /usr/bin/python
 #
-# Copyright (C) 1998-2008 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2009 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
@@ -14,7 +14,8 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
 
 """Perform all necessary upgrades.
 
@@ -126,8 +127,8 @@
         try:
             fp = open(os.path.join(mm_cfg.TEMPLATE_DIR, gtemplate))
         except IOError, e:
-            if e.errno <> errno.ENOENT: raise
-            # No global template
+            if e.errno not in (errno.ENOENT, errno.EISDIR): raise
+            # No global template or maybe a VCS directory
             continue
 
         gcksum = Utils.md5_new(fp.read()).digest()
@@ -298,9 +299,7 @@
         %(newname)s""")
         else:
             # directory
-            print _("""\
-    looks like you have a really recent CVS installation...
-    you're either one brave soul, or you already ran me""")
+            print _('Nothing to do.')
 
 
     #
@@ -321,9 +320,7 @@
     to
         %(newname)s""")
         else: # directory
-            print _("""\
-    looks like you have a really recent CVS installation...
-    you're either one brave soul, or you already ran me""")
+            print _('Nothing to do.')
 
     #
     # move the html archives there
@@ -510,6 +507,12 @@
         try:
             msgfp = open(pckfile)
             msg = cPickle.load(msgfp)
+            if data == {}:
+                # There was no .db file. Is this a post 2.1.5 .pck?
+                try:
+                    data = cPickle.load(msgfp)
+                except EOFError:
+                    pass
             os.unlink(pckfile)
         except EnvironmentError, e:
             if e.errno <> errno.ENOENT: raise



--
Active development version (web u/i update)
https://code.launchpad.net/~mailman-coders/mailman/2.2

Your team Mailman Checkins is subscribed to branch lp:mailman/2.2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to