Feat: Expose validity time to command line
Merge request reports
Activity
Filter activity
Doesn't
use_dir_creation_date
already do the same thing as the default, just taking the file date? This can lead to conflicting settings:begin_validity == "INJECTION"
anduse_dir_creation_date=False
results in the current time being used, which is not obvious from that configuration.Also, do not use the following construct:
if not foo == "bar":
The correct way is:
if foo != "bar":
added 1 commit
- 93923b9d - Use directory instaed of file to extract creation time
mentioned in commit 75e95b57
Please register or sign in to reply