summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-06-28 13:38:04 -0300
committerRamiro Morales <cramm0@gmail.com>2013-06-28 21:48:16 -0300
commitf73d04dda9f1a96acdab77dacd7bdeaad66ad736 (patch)
tree8e70452d5a76cc64ae8fad67bc61f7ed5de94422 /django
parentbb33ee5e7bf5325696e80e6d87e7614a9607a1b7 (diff)
Removed 'cleanup' management command as per deprecation TL.
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/cleanup.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/django/core/management/commands/cleanup.py b/django/core/management/commands/cleanup.py
deleted file mode 100644
index e158ebb541..0000000000
--- a/django/core/management/commands/cleanup.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import warnings
-
-from django.contrib.sessions.management.commands import clearsessions
-
-
-class Command(clearsessions.Command):
- def handle_noargs(self, **options):
- warnings.warn(
- "The `cleanup` command has been deprecated in favor of `clearsessions`.",
- DeprecationWarning)
- super(Command, self).handle_noargs(**options)