diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2013-06-28 13:38:04 -0300 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2013-06-28 21:48:16 -0300 |
| commit | f73d04dda9f1a96acdab77dacd7bdeaad66ad736 (patch) | |
| tree | 8e70452d5a76cc64ae8fad67bc61f7ed5de94422 /django | |
| parent | bb33ee5e7bf5325696e80e6d87e7614a9607a1b7 (diff) | |
Removed 'cleanup' management command as per deprecation TL.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/commands/cleanup.py | 11 |
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) |
