diff options
author | Alban Gruin | 2018-02-10 15:13:20 +0100 |
---|---|---|
committer | Alban Gruin | 2018-02-10 15:14:51 +0100 |
commit | 9b312281e0f2a9668ab90d77f212c9618daec7db (patch) | |
tree | 09a86205b5fc9f339b02dbc6ea77c0d88cee4bbf /management/commands/cleancourses.py | |
parent | 3354c34fa1f58750597b9e6213a81e3443721ac0 (diff) |
Correction des imports
Diffstat (limited to 'management/commands/cleancourses.py')
-rw-r--r-- | management/commands/cleancourses.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/management/commands/cleancourses.py b/management/commands/cleancourses.py index 88eec64..246cfcc 100644 --- a/management/commands/cleancourses.py +++ b/management/commands/cleancourses.py @@ -15,7 +15,8 @@ from django.core.management.base import BaseCommand from django.db import transaction -from edt.models import Course, Group + +from ...models import Course, Group class Command(BaseCommand): |