diff --git a/CHANGES/4724.bugfix b/CHANGES/4724.bugfix new file mode 100644 index 0000000000..f5de72e61d --- /dev/null +++ b/CHANGES/4724.bugfix @@ -0,0 +1 @@ +Fixed that `pulp_file` presented its `python_package` as `pulp_file` instead of `pulp-file`. diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 7ed000a8e8..d1bb39be6d 100644 --- a/pulp_file/app/__init__.py +++ b/pulp_file/app/__init__.py @@ -9,5 +9,5 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig): name = "pulp_file.app" label = "file" version = "3.41.1.dev" - python_package_name = "pulp_file" # TODO Add python_module_name + python_package_name = "pulp-file" # TODO Add python_module_name domain_compatible = True