From a992e4f2fee5b05a50d3fce7c437167717879812 Mon Sep 17 00:00:00 2001 From: Alexander J Sheehan Date: Mon, 7 Aug 2023 17:27:19 +0000 Subject: [PATCH] chore: fixing import path error in management command --- CHANGELOG.rst | 4 ++++ enterprise/__init__.py | 2 +- enterprise/management/commands/manufacture_data.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 75ac7c4cc1..802ce32cd4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,10 @@ Change Log Unreleased ---------- +[4.0.10] +-------- +chore: fixing import path error in management command + [4.0.9] ------- feat: customizable management command to generate local enterprise data diff --git a/enterprise/__init__.py b/enterprise/__init__.py index 5db7501622..17a75ec512 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -2,6 +2,6 @@ Your project description goes here. """ -__version__ = "4.0.9" +__version__ = "4.0.10" default_app_config = "enterprise.apps.EnterpriseConfig" diff --git a/enterprise/management/commands/manufacture_data.py b/enterprise/management/commands/manufacture_data.py index 0bc1acd390..f1ce5e3ae8 100644 --- a/enterprise/management/commands/manufacture_data.py +++ b/enterprise/management/commands/manufacture_data.py @@ -19,7 +19,7 @@ # incase other consumers of the command do not have the same factories installed. # For example: try: - import common.djangoapps.student.test.factories # pylint: disable=unused-import + import common.djangoapps.student.tests.factories # pylint: disable=unused-import from test_utils import factories # pylint: disable=unused-import except ImportError: