Project

General

Profile

Download (376 Bytes) Statistics
| Branch: | Tag: | Revision:

calebasse / scripts / copy_description.py @ 38b4bc27

1
# -*- coding: utf-8 -*-
2
#!/usr/bin/env python
3

    
4
import calebasse.settings
5
import django.core.management
6

    
7
django.core.management.setup_environ(calebasse.settings)
8

    
9
from calebasse.agenda.models import EventWithAct
10

    
11
for event in EventWithAct.objects.all():
12
    if not event.act.comment and event.description:
13
        event.act.comment = event.description
14
        event.act.save()
(6-6/43)