Skip to content

Commit b997774

Browse files
style fix
1 parent d72c062 commit b997774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_cron/management/commands/runcrons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ def clear_old_log_entries():
6868
"""
6969
if hasattr(settings, 'DJANGO_CRON_DELETE_LOGS_OLDER_THAN'):
7070
delta = timedelta(days=settings.DJANGO_CRON_DELETE_LOGS_OLDER_THAN)
71-
CronJobLog.objects.filter(end_time__lt=get_current_time()-delta).delete()
71+
CronJobLog.objects.filter(end_time__lt=get_current_time() - delta).delete()

0 commit comments

Comments
 (0)