app/django/bin/daily_cleanup.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 08 Mar 2009 17:19:25 +0000
changeset 1752 255117ccd6a0
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
The student proposal public page can now be used to place a public comment. Developers, Hosts, and the student/org_admin/mentor that this proposal is from/directed to can leave a comment. All the comments placed will show up on the review page aswell, and vica versa. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

#!/usr/bin/env python

"""
Daily cleanup job.

Can be run as a cronjob to clean out old data from the database (only expired
sessions at the moment).
"""

from django.core import management

if __name__ == "__main__":
    management.call_command('cleanup')