app/django/bin/daily_cleanup.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 19 Apr 2009 21:50:04 +0000
changeset 2250 a172051d9b99
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added the gathering of data required to display a map on the org home page. Patch by: Madhusudan.C.S Reviewed by: Lennard de Rijk

#!/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')