aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/update3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/update b/bin/update
index 1a1e5e3d..3ecc304f 100755
--- a/bin/update
+++ b/bin/update
@@ -427,6 +427,9 @@ def update_qfiles():
# data out and re-queue them.
for dirname in os.listdir(mm_cfg.QUEUE_DIR):
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
+ continue
sb = Switchboard(dirpath)
for filename in os.listdir(dirpath):
filepath = os.path.join(dirpath, filename)