Skip to content

Commit

Permalink
Correctly report file plugin provided by pulpcore
Browse files Browse the repository at this point in the history
Since being merged, the python package for the pulp app labeled 'file'
is supposed to be "pulpcore". Due to some inconsistencies around the use
of app label vs. python package vs. python module, we need some
straightening all around.

fixes #4728
  • Loading branch information
mdellweg committed Nov 16, 2023
1 parent 0f2b1d4 commit 1fc49fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES/4728.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The python package for the ``file`` plugin is now correctly reporting as ``"pulpcore"``.
2 changes: 1 addition & 1 deletion pulp_file/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig):
name = "pulp_file.app"
label = "file"
version = "3.42.0.dev"
python_package_name = "pulp-file" # TODO Add python_module_name
python_package_name = "pulpcore"
domain_compatible = True

0 comments on commit 1fc49fd

Please sign in to comment.