diff --git a/mayan/apps/appearance/apps.py b/mayan/apps/appearance/apps.py index 511ea15fed..b8781b2023 100644 --- a/mayan/apps/appearance/apps.py +++ b/mayan/apps/appearance/apps.py @@ -4,7 +4,7 @@ from django.utils.translation import ugettext_lazy as _ from common import MayanAppConfig -from .packages import * # NOQA +from .licenses import * # NOQA class AppearanceApp(MayanAppConfig): diff --git a/mayan/apps/appearance/packages.py b/mayan/apps/appearance/licenses.py similarity index 100% rename from mayan/apps/appearance/packages.py rename to mayan/apps/appearance/licenses.py diff --git a/mayan/apps/common/apps.py b/mayan/apps/common/apps.py index e283db6827..9651c2ecdd 100644 --- a/mayan/apps/common/apps.py +++ b/mayan/apps/common/apps.py @@ -24,7 +24,7 @@ from .links import ( ) from .literals import DELETE_STALE_UPLOADS_INTERVAL from .menus import menu_facet, menu_main, menu_tools, menu_user -from .packages import * # NOQA +from .licenses import * # NOQA from .settings import setting_auto_logging from .tasks import task_delete_stale_uploads # NOQA - Force task registration diff --git a/mayan/apps/common/packages.py b/mayan/apps/common/licenses.py similarity index 100% rename from mayan/apps/common/packages.py rename to mayan/apps/common/licenses.py diff --git a/mayan/apps/converter/apps.py b/mayan/apps/converter/apps.py index 36f0dc92ec..40b54d6bc0 100644 --- a/mayan/apps/converter/apps.py +++ b/mayan/apps/converter/apps.py @@ -10,7 +10,7 @@ from .links import ( link_transformation_create, link_transformation_delete, link_transformation_edit ) -from .packages import * # NOQA +from .licenses import * # NOQA class ConverterApp(MayanAppConfig): diff --git a/mayan/apps/converter/packages.py b/mayan/apps/converter/licenses.py similarity index 100% rename from mayan/apps/converter/packages.py rename to mayan/apps/converter/licenses.py diff --git a/mayan/apps/django_gpg/apps.py b/mayan/apps/django_gpg/apps.py index 3f00d9b4a9..b9e5883a73 100644 --- a/mayan/apps/django_gpg/apps.py +++ b/mayan/apps/django_gpg/apps.py @@ -16,7 +16,7 @@ from .links import ( link_key_receive, link_key_setup, link_key_upload, link_private_keys, link_public_keys ) -from .packages import * # NOQA +from .licenses import * # NOQA from .permissions import ( permission_key_delete, permission_key_download, permission_key_sign, permission_key_view diff --git a/mayan/apps/django_gpg/packages.py b/mayan/apps/django_gpg/licenses.py similarity index 100% rename from mayan/apps/django_gpg/packages.py rename to mayan/apps/django_gpg/licenses.py diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index 4411469de6..2e95e0c807 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -33,7 +33,7 @@ from .links import ( link_template_node_create, link_template_node_delete, link_template_node_edit ) -from .packages import * # NOQA +from .licenses import * # NOQA from .permissions import ( permission_document_indexing_create, permission_document_indexing_delete, permission_document_indexing_edit, permission_document_indexing_view diff --git a/mayan/apps/document_indexing/packages.py b/mayan/apps/document_indexing/licenses.py similarity index 100% rename from mayan/apps/document_indexing/packages.py rename to mayan/apps/document_indexing/licenses.py diff --git a/mayan/apps/events/apps.py b/mayan/apps/events/apps.py index 443f4cde3c..edd87731b0 100644 --- a/mayan/apps/events/apps.py +++ b/mayan/apps/events/apps.py @@ -8,7 +8,7 @@ from common import MayanAppConfig, menu_tools from navigation import SourceColumn from .links import link_events_list -from .packages import * # NOQA +from .licenses import * # NOQA from .widgets import event_type_link diff --git a/mayan/apps/events/packages.py b/mayan/apps/events/licenses.py similarity index 100% rename from mayan/apps/events/packages.py rename to mayan/apps/events/licenses.py diff --git a/mayan/apps/mimetype/apps.py b/mayan/apps/mimetype/apps.py index 35d57f3e55..9aedf1a23d 100644 --- a/mayan/apps/mimetype/apps.py +++ b/mayan/apps/mimetype/apps.py @@ -4,7 +4,7 @@ from django.utils.translation import ugettext_lazy as _ from common import MayanAppConfig -from .packages import * # NOQA +from .licenses import * # NOQA class MIMETypesApp(MayanAppConfig): diff --git a/mayan/apps/mimetype/packages.py b/mayan/apps/mimetype/licenses.py similarity index 100% rename from mayan/apps/mimetype/packages.py rename to mayan/apps/mimetype/licenses.py diff --git a/mayan/apps/rest_api/apps.py b/mayan/apps/rest_api/apps.py index f506a57469..42a18e6ab2 100644 --- a/mayan/apps/rest_api/apps.py +++ b/mayan/apps/rest_api/apps.py @@ -7,7 +7,7 @@ from common import MayanAppConfig, menu_tools from .classes import APIEndPoint from .links import link_api, link_api_documentation -from .packages import * # NOQA +from .licenses import * # NOQA class RESTAPIApp(MayanAppConfig): diff --git a/mayan/apps/rest_api/packages.py b/mayan/apps/rest_api/licenses.py similarity index 100% rename from mayan/apps/rest_api/packages.py rename to mayan/apps/rest_api/licenses.py diff --git a/mayan/apps/statistics/apps.py b/mayan/apps/statistics/apps.py index 7560da6fb4..ba0f36b43f 100644 --- a/mayan/apps/statistics/apps.py +++ b/mayan/apps/statistics/apps.py @@ -14,7 +14,7 @@ from .links import ( link_execute, link_namespace_details, link_namespace_list, link_statistics, link_view ) -from .packages import * # NOQA +from .licenses import * # NOQA from .tasks import task_execute_statistic # NOQA - Force registration of task diff --git a/mayan/apps/statistics/packages.py b/mayan/apps/statistics/licenses.py similarity index 100% rename from mayan/apps/statistics/packages.py rename to mayan/apps/statistics/licenses.py