diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-11-16 11:57:31 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-11-16 11:57:31 +0200 |
commit | 15ea45e17ebe662b4a105a0a61d6e46dcf591358 (patch) | |
tree | 2855dc2212c276956c4525e96714e21e36dfc353 /servo | |
parent | 767debc0bd38361808c0ca29c89e6cf950eeb7f2 (diff) | |
download | Servo-15ea45e17ebe662b4a105a0a61d6e46dcf591358.tar.gz Servo-15ea45e17ebe662b4a105a0a61d6e46dcf591358.tar.bz2 Servo-15ea45e17ebe662b4a105a0a61d6e46dcf591358.zip |
Cleanup
Diffstat (limited to 'servo')
-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() |