From e340d96d6d2ef135c885c22677ac06c27e77d9e4 Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Thu, 1 Aug 2013 17:29:05 +0200 Subject: [PATCH] Fix module paths in recent additions Module paths were missing the odsreg module name in recent additions. Change-Id: I6e5031ab1783891f1541ea6c92701fa13bc0c615 --- cfp/management/commands/loadevent.py | 2 +- cfp/models.py | 2 +- scheduling/management/commands/loadslots.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cfp/management/commands/loadevent.py b/cfp/management/commands/loadevent.py index 7abc8da..189e4bd 100644 --- a/cfp/management/commands/loadevent.py +++ b/cfp/management/commands/loadevent.py @@ -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): diff --git a/cfp/models.py b/cfp/models.py index 8967639..7ff5868 100644 --- a/cfp/models.py +++ b/cfp/models.py @@ -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): diff --git a/scheduling/management/commands/loadslots.py b/scheduling/management/commands/loadslots.py index b3ec7ea..c68663a 100644 --- a/scheduling/management/commands/loadslots.py +++ b/scheduling/management/commands/loadslots.py @@ -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):