Commit afd6077fb91957b150b057c499773dc43ead5553
1 parent
22bb663b
Exists in
master
and in
39 other branches
fixing broken import
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
src/super_archives/management/commands/import_emails.py
| ... | ... | @@ -13,10 +13,10 @@ from django.db import transaction |
| 13 | 13 | from django.template.defaultfilters import slugify |
| 14 | 14 | from django.core.management.base import BaseCommand, CommandError |
| 15 | 15 | |
| 16 | -from colab.super_archives.models import MailingList, Message, \ | |
| 17 | - Thread, EmailAddress | |
| 18 | -from colab.super_archives.management.commands.message import Message as \ | |
| 19 | - CustomMessage | |
| 16 | +from super_archives.models import MailingList, Message, \ | |
| 17 | + Thread, EmailAddress | |
| 18 | +from super_archives.management.commands.message import Message as \ | |
| 19 | + CustomMessage | |
| 20 | 20 | |
| 21 | 21 | |
| 22 | 22 | class Command(BaseCommand, object): | ... | ... |