diff options
author | David Robillard <d@drobilla.net> | 2015-03-07 05:13:18 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-03-07 05:13:18 -0500 |
commit | d317226911e2940e7c184a861cd0da154bbe266e (patch) | |
tree | db076c2bcbae2889ad41cc8142336d97c2989e80 | |
parent | 1010e630c56c27e8b6ea7b3708e406d1c598b27e (diff) | |
download | lv2-d317226911e2940e7c184a861cd0da154bbe266e.tar.xz |
Use current date if building non-release docs.
-rw-r--r-- | wscript | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -314,6 +314,10 @@ def build_index(task): rows += rowfile.readlines() rowfile.close() + if date is None: + import datetime + date = datetime.datetime.now().isoformat() + subst_file(task.inputs[0].abspath(), task.outputs[0].abspath(), { '@ROWS@': ''.join(rows), '@LV2_VERSION@': VERSION, |