From 334b1a23aa5dec566163f7510c445b796c5fed6e Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Fri, 29 Apr 2016 15:06:37 +0200 Subject: [PATCH] [Backport] Fixing load_dump command --- taiga/export_import/management/commands/load_dump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taiga/export_import/management/commands/load_dump.py b/taiga/export_import/management/commands/load_dump.py index a1d919f0..08f7811b 100644 --- a/taiga/export_import/management/commands/load_dump.py +++ b/taiga/export_import/management/commands/load_dump.py @@ -21,8 +21,8 @@ from django.db.models import signals from optparse import make_option from taiga.base.utils import json -from taiga.export_import.import services -from taiga.export_import.exceptions as err +from taiga.export_import import services +from taiga.export_import import exceptions as err from taiga.export_import.renderers import ExportRenderer from taiga.projects.models import Project from taiga.users.models import User