Skip to content
Snippets Groups Projects
Verified Commit 7cbafc73 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Workaround bug in Dynaconf.

https://github.com/rochacbruno/dynaconf/issues/251

Revert until upstream releases fix!
parent 68a8f77a
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,7 @@ DBBACKUP_STORAGE_OPTIONS = {
}
DBBACKUP_CLEANUP_KEEP = _settings.get('backup.keep.database', 10)
DBBACKUP_CLEANUP_KEEP_MEDIA = _settings.get('backup.keep.media', 10)
DBBACKUP_CRON_TIMES = _settings.get('backup.times', ['03:57'])
DBBACKUP_CRON_TIMES = _settings.get('backup.times', None) or ['03:57']
CRON_CLASSES = [
'biscuit.core.cronjobs.Backup'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment