+++ /dev/null
-K 25
-svn:wc:ra_dav:version-url
-V 56
-/svn/!svn/ver/170/trunk/registration/management/commands
-END
-__init__.py
-K 25
-svn:wc:ra_dav:version-url
-V 68
-/svn/!svn/ver/170/trunk/registration/management/commands/__init__.py
-END
-cleanupregistration.py
-K 25
-svn:wc:ra_dav:version-url
-V 79
-/svn/!svn/ver/170/trunk/registration/management/commands/cleanupregistration.py
-END
+++ /dev/null
-9
-
-dir
-170
-http://django-registration.googlecode.com/svn/trunk/registration/management/commands
-http://django-registration.googlecode.com/svn
-
-
-
-2008-09-22T10:00:14.397881Z
-170
-ubernostrum
-
-
-svn:special svn:externals svn:needs-lock
-
-
-
-
-
-
-
-
-
-
-
-b970a8a1-db28-0410-9b79-8b7e580363d3
-\f
-__init__.py
-file
-
-
-
-
-2009-02-18T02:12:14.000000Z
-d41d8cd98f00b204e9800998ecf8427e
-2008-09-22T10:00:14.397881Z
-170
-ubernostrum
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-0
-\f
-cleanupregistration.py
-file
-
-
-
-
-2009-02-18T02:12:14.000000Z
-2fc6dce3e47cc12aafd11130c6c8b45e
-2008-09-22T10:00:14.397881Z
-170
-ubernostrum
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-630
-\f
+++ /dev/null
-"""
-A management command which deletes expired accounts (e.g.,
-accounts which signed up but never activated) from the database.
-
-Calls ``RegistrationProfile.objects.delete_expired_users()``, which
-contains the actual logic for determining which accounts are deleted.
-
-"""
-
-from django.core.management.base import NoArgsCommand
-from django.core.management.base import CommandError
-
-from registration.models import RegistrationProfile
-
-
-class Command(NoArgsCommand):
- help = "Delete expired user registrations from the database"
-
- def handle_noargs(self, **options):
- RegistrationProfile.objects.delete_expired_users()