-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
job_pause causes AttributeError 'NoneType' object has no attribute 'strftime' #41
Comments
The The way that django-apscheduler shows timezone-aware datetimes can be quite confusing as a result. |
If a job is paused, when django tries to format the next run time, it receives None because it is paused. This check displays the "(paused)" string in place of the next run time instead of causing AttributeError 'NoneType' object has no attribute 'strftime'
Can confirm that in django-apscheduler==0.3.0 the issue is still there.
|
Fixed via #68. |
Using django-apscheduler==0.2.13:
The following error is presented:
It happens in: lib\site-packages\django_apscheduler\admin.py in next_run_time_sec, line 35
This method:
The text was updated successfully, but these errors were encountered: