diff options
-rw-r--r-- | servo/lib/utils.py | 3 | ||||
-rwxr-xr-x | servo/management/commands/cron.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/servo/lib/utils.py b/servo/lib/utils.py index 8d4bb91..77c39a3 100644 --- a/servo/lib/utils.py +++ b/servo/lib/utils.py @@ -2,9 +2,8 @@ import json import subprocess -from django.db.models import Model -from django.core.cache import cache from django.http import HttpResponse +from django.core.cache import cache from django.core.serializers.json import DjangoJSONEncoder from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger diff --git a/servo/management/commands/cron.py b/servo/management/commands/cron.py index d4e6b89..adc6d34 100755 --- a/servo/management/commands/cron.py +++ b/servo/management/commands/cron.py @@ -128,5 +128,5 @@ class Command(BaseCommand): def handle(self, *args, **options): #self.update_invoices() self.update_counts() - #self.notify_aging_repairs() + self.notify_aging_repairs() self.notify_stock_limits() |