diff --git a/.gitignore b/.gitignore index 40a69eb..72cc436 100644 --- a/.gitignore +++ b/.gitignore @@ -133,6 +133,6 @@ dmypy.json app/config/calendar.json /app/cache/ -#development directories +# Development directories /app/config/ .vscode diff --git a/README.md b/README.md index e8ac8f9..4059092 100644 --- a/README.md +++ b/README.md @@ -59,15 +59,18 @@ The JSON configuration file should look like the following. }, "name":{ "addPrefix":"str", - "addSuffix":"str" + "addSuffix":"str", + "redactAs":"str" }, "description":{ "addPrefix":"str", - "addSuffix":"str" + "addSuffix":"str", + "redactAs":"str" }, "location":{ "addPrefix":"str", - "addSuffix":"str" + "addSuffix":"str", + "redactAs":"str" } } } diff --git a/app/tools/tools.py b/app/tools/tools.py index 262666b..91f253d 100644 --- a/app/tools/tools.py +++ b/app/tools/tools.py @@ -422,7 +422,7 @@ def load_cal(entry: dict) -> Calendar: else: cal = Calendar(imports=r.content.decode()) - cal = horodate(cal, 'Downloaded at') + cal = horodate(cal, 'Event last fetched: ') return cal