Browse Source

crontab.__repr__: Fixed typo "m/d/h" -> "m/h/d"

Ask Solem 14 years ago
parent
commit
37d41c2499
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/schedules.py

+ 1 - 1
celery/schedules.py

@@ -224,7 +224,7 @@ class crontab(schedule):
         self.nowfun = nowfun
 
     def __repr__(self):
-        return "<crontab: %s %s %s (m/d/h)>" % (self._orig_minute or "*",
+        return "<crontab: %s %s %s (m/h/d)>" % (self._orig_minute or "*",
                                                 self._orig_hour or "*",
                                                 self._orig_day_of_week or "*")