You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
257 B
14 lines
257 B
|
13 years ago
|
#!/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')
|