diff options
author | volpino <fox91@anche.no> | 2012-07-27 11:33:27 +0200 |
---|---|---|
committer | volpino <fox91@anche.no> | 2012-07-27 11:33:27 +0200 |
commit | 04265dacff0b02e15b9e389fdfc51e7e42d901e4 (patch) | |
tree | a71f3294808db09e96f2dc50fe56171e6f5ada4d /euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py | |
parent | Merge branch 'master' of https://github.com/iksaif/euscan (diff) | |
download | euscan-04265dacff0b02e15b9e389fdfc51e7e42d901e4.tar.gz euscan-04265dacff0b02e15b9e389fdfc51e7e42d901e4.tar.bz2 euscan-04265dacff0b02e15b9e389fdfc51e7e42d901e4.zip |
euscan: just PEP8 cleaning
Signed-off-by: volpino <fox91@anche.no>
Diffstat (limited to 'euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py')
-rw-r--r-- | euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py b/euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py index d86eca9..721fc2f 100644 --- a/euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py +++ b/euscanwww/djeuscan/migrations/0015_initial_celery_periodictasks.py @@ -10,18 +10,18 @@ class Migration(DataMigration): def forwards(self, orm): every_day = orm["djcelery.CrontabSchedule"].objects.create( - minute = "00", - hour = "01", - day_of_week = "*", - day_of_month = "*", - month_of_year = "*" + minute="00", + hour="01", + day_of_week="*", + day_of_month="*", + month_of_year="*" ) every_week = orm["djcelery.CrontabSchedule"].objects.create( - minute = "00", - hour = "03", - day_of_week = "1", - day_of_month = "*", - month_of_year = "*" + minute="00", + hour="03", + day_of_week="1", + day_of_month="*", + month_of_year="*" ) orm["djcelery.PeriodicTask"].objects.create( name="Daily portage update", |