summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2011-11-20 11:04:37 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2011-11-20 11:04:37 +0000
commit119e188717db82d3ce661fb5d1e0d3df1c91eb3a (patch)
tree379a898f01e63f5a7cfb31dccf3b5140db553158
parent1510c3efda4d3dfdb49060f1ed66929c07dbf73a (diff)
Upgraded manage.py cleanup to be compatible with time zone support. See also r17121.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/commands/cleanup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/commands/cleanup.py b/django/core/management/commands/cleanup.py
index a5c932b686..e19d1649be 100644
--- a/django/core/management/commands/cleanup.py
+++ b/django/core/management/commands/cleanup.py
@@ -1,5 +1,5 @@
-import datetime
from django.core.management.base import NoArgsCommand
+from django.utils import timezone
class Command(NoArgsCommand):
help = "Can be run as a cronjob or directly to clean out old data from the database (only expired sessions at the moment)."
@@ -7,5 +7,5 @@ class Command(NoArgsCommand):
def handle_noargs(self, **options):
from django.db import transaction
from django.contrib.sessions.models import Session
- Session.objects.filter(expire_date__lt=datetime.datetime.now()).delete()
+ Session.objects.filter(expire_date__lt=timezone.now()).delete()
transaction.commit_unless_managed()