Fix module paths in recent additions

Module paths were missing the odsreg module name in recent additions.

Change-Id: I6e5031ab1783891f1541ea6c92701fa13bc0c615
This commit is contained in:
Thierry Carrez 2013-08-01 17:29:05 +02:00
parent 6238da264d
commit e340d96d6d
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@
import json
from django.core.management.base import BaseCommand, CommandError
from cfp.models import Event, Topic
from odsreg.cfp.models import Event, Topic
class Command(BaseCommand):

View File

@ -16,7 +16,7 @@
from django.db import models
from django.contrib.auth.models import User
from cfp.utils import validate_bp
from odsreg.cfp.utils import validate_bp
class Event(models.Model):

View File

@ -16,8 +16,8 @@
import json
from django.core.management.base import BaseCommand, CommandError
from scheduling.models import Slot, Room
from cfp.models import Topic
from odsreg.scheduling.models import Slot, Room
from odsreg.cfp.models import Topic
class Command(BaseCommand):