Skip to content

Commit

Permalink
Fix pulp_file package name in status
Browse files Browse the repository at this point in the history
Status report of the pulp_file python_package must be pulp-file.
Technically this is still wrong, because it should be pulpcore, but we
will need another field to present the python module in order to be able
to generate the bindings.

fixes pulp#4724
  • Loading branch information
mdellweg authored and dralley committed Nov 16, 2023
1 parent 9cab9f4 commit 822e2be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES/4724.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed that `pulp_file` presented its `python_package` as `pulp_file` instead of `pulp-file`.
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 = "pulp-file" # TODO Add python_module_name
domain_compatible = True

0 comments on commit 822e2be

Please sign in to comment.