linamh/net-mail/mailman/files/mailman-2.1.14_rc1-directory-check.patch
geos_one 7ee04260ef net-mail/mailman: Bump
(Portage version: 2.2.0_alpha6/svn/Linux x86_64, RepoMan options: --force)

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2766 6952d904-891a-0410-993b-d76249ca496b
2010-12-03 20:09:54 +00:00

20 lines
786 B
Diff

--- mailman-2.1.14rc1/bin/update 2010-09-09 18:51:09.000000000 +0200
+++ mailman-2.1.14rc1-1/bin/update 2010-09-14 01:02:09.000000000 +0200
@@ -35,6 +35,7 @@
"""
import os
+import stat
import sys
import time
import errno
@@ -428,7 +429,7 @@
# Now update for the Mailman 2.1.5 qfile format. For every filebase in
# the qfiles/* directories that has both a .pck and a .db file, pull the
# data out and re-queue them.
- for dirname in os.listdir(mm_cfg.QUEUE_DIR):
+ for dirname in [x for x in os.listdir(mm_cfg.QUEUE_DIR) if stat.S_ISDIR(os.stat(os.path.join(mm_cfg.QUEUE_DIR,x)).st_mode)]:
dirpath = os.path.join(mm_cfg.QUEUE_DIR, dirname)
if dirpath == mm_cfg.BADQUEUE_DIR:
# The files in qfiles/bad can't possibly be pickles