From 30d554b4ffe318085c01838fdb61c44c0a56d754 Mon Sep 17 00:00:00 2001 From: Michael Still Date: Mon, 26 May 2014 16:29:51 +1000 Subject: [PATCH] Don't reprocess. --- mirror_fetchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirror_fetchers.py b/mirror_fetchers.py index 8036e3d..5606a39 100755 --- a/mirror_fetchers.py +++ b/mirror_fetchers.py @@ -89,7 +89,7 @@ while day < datetime.datetime.now(): # Reprocess the last 90 days? FILENAME_RE = re.compile('^merged/([0-9]+)/([0-9]+)/([0-9]+)$') -if True: +if False: for dirpath, subdirs, files in os.walk('merged'): for filename in files: m = FILENAME_RE.match('%s/%s' % (dirpath, filename))