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/listtimetables.py | |
parent | 3354c34fa1f58750597b9e6213a81e3443721ac0 (diff) |
Correction des imports
Diffstat (limited to 'management/commands/listtimetables.py')
-rw-r--r-- | management/commands/listtimetables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/management/commands/listtimetables.py b/management/commands/listtimetables.py index a3ef223..d17399a 100644 --- a/management/commands/listtimetables.py +++ b/management/commands/listtimetables.py @@ -14,7 +14,7 @@ # along with celcatsanitizer. If not, see <http://www.gnu.org/licenses/>. from django.core.management.base import BaseCommand -from edt.models import Source +from ...models import Source class Command(BaseCommand): |