aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-07-28 23:05:43 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-07-28 23:05:43 +0200
commite590f61f742ae7986ebdc8bb59585682723f8828 (patch)
tree88d11744d7f293d47e9a8fa0588dcdccf6dc4997 /python
parentf0f56d558673e73368ac0342d05671d5eeba3ed4 (diff)
downloadrefcat-e590f61f742ae7986ebdc8bb59585682723f8828.tar.gz
refcat-e590f61f742ae7986ebdc8bb59585682723f8828.zip
tasks: use 2021-07-28 as default date
Diffstat (limited to 'python')
-rw-r--r--python/refcat/tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py
index 4461424..78f1037 100644
--- a/python/refcat/tasks.py
+++ b/python/refcat/tasks.py
@@ -191,9 +191,9 @@ class Refcat(BaseTask):
A base tasks for all refcat related tasks.
"""
BASE = settings.BASE
- TAG = settings.TAG # e.g. "2021-07-28"
+ TAG = settings.TAG # e.g. "2021-07-28", but can be anything; TODO: converge on a pattern
- date = luigi.DateParameter(default=datetime.date(2021, 7, 6),
+ date = luigi.DateParameter(default=datetime.date(2021, 7, 28),
description="a versioning help, will be part of filename, change this manually")
tmpdir = luigi.Parameter(default=settings.TMPDIR, description="set tempdir", significant=False)
n = luigi.IntParameter(default=multiprocessing.cpu_count(), significant=False)