diff --git a/modules/main/management/commands/reset_db.py b/modules/main/management/commands/reset_db.py index c733946..981889c 100644 --- a/modules/main/management/commands/reset_db.py +++ b/modules/main/management/commands/reset_db.py @@ -1,6 +1,6 @@ import json from django.core.management.base import BaseCommand -from main.models import * +from modules.main.models import * class Command(BaseCommand): help = 'Seed data from json file' diff --git a/modules/main/management/commands/seed_db.py b/modules/main/management/commands/seed_db.py index 998c377..f06f337 100644 --- a/modules/main/management/commands/seed_db.py +++ b/modules/main/management/commands/seed_db.py @@ -1,6 +1,6 @@ import json from django.core.management.base import BaseCommand -from main.models import * +from modules.main.models import * class Command(BaseCommand): help = 'Seed data from json file'