We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212aef2 commit 493a1f2Copy full SHA for 493a1f2
django_celery_beat/models.py
@@ -292,10 +292,10 @@ class Meta:
292
'day_of_week', 'hour', 'minute', 'timezone']
293
294
def __str__(self):
295
- return '{0} {1} {2} {3} {4} (m/h/d/dM/MY) {5}'.format(
+ return '{0} {1} {2} {3} {4} (m/h/dM/MY/d) {5}'.format(
296
cronexp(self.minute), cronexp(self.hour),
297
- cronexp(self.day_of_week), cronexp(self.day_of_month),
298
- cronexp(self.month_of_year), str(self.timezone)
+ cronexp(self.day_of_month), cronexp(self.month_of_year),
+ cronexp(self.day_of_week), str(self.timezone)
299
)
300
301
@property
0 commit comments