summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/management/commands/importhosts.py2
-rw-r--r--program/management/commands/importnotes.py2
-rw-r--r--program/management/commands/importprogramslots.py2
-rw-r--r--program/management/commands/importshows.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/program/management/commands/importhosts.py b/program/management/commands/importhosts.py
index a2abbd3..1ecabef 100644
--- a/program/management/commands/importhosts.py
+++ b/program/management/commands/importhosts.py
@@ -2,7 +2,7 @@ from django.core.management.base import NoArgsCommand
import MySQLdb
-from models import Host
+from program.models import Host
USER = 'helsinki'
PASSWD = 'helsinki'
diff --git a/program/management/commands/importnotes.py b/program/management/commands/importnotes.py
index 48e047c..94cea41 100644
--- a/program/management/commands/importnotes.py
+++ b/program/management/commands/importnotes.py
@@ -5,7 +5,7 @@ from django.utils.html import clean_html, strip_tags
import MySQLdb
-from models import Note, Show, TimeSlot
+from program.models import Note, Show, TimeSlot
USER = 'helsinki'
PASSWD = 'helsinki'
diff --git a/program/management/commands/importprogramslots.py b/program/management/commands/importprogramslots.py
index 86e3038..ce4f60e 100644
--- a/program/management/commands/importprogramslots.py
+++ b/program/management/commands/importprogramslots.py
@@ -5,7 +5,7 @@ from django.utils.html import strip_tags
from datetime import time
import MySQLdb
-from models import Show, ProgramSlot, RRule
+from program.models import Show, ProgramSlot, RRule
USER = 'helsinki'
PASSWD = 'helsinki'
diff --git a/program/management/commands/importshows.py b/program/management/commands/importshows.py
index 0f619b5..d5fdee7 100644
--- a/program/management/commands/importshows.py
+++ b/program/management/commands/importshows.py
@@ -5,7 +5,7 @@ from django.utils.html import clean_html, strip_tags
import MySQLdb
-from models import BroadcastFormat, Host, Show
+from program.models import BroadcastFormat, Host, Show
USER = 'helsinki'
PASSWD = 'helsinki'