Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update re.split calls to use maxsplit keyword argument #4709

Merged
merged 3 commits into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cve_bin_tool/available_fix/redhat_cve_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def parse_package_data(self, package_data: str) -> str:

"""
parsed_package_data = ""
package_name = split(r"-\d", package_data, 1)[0]
package_name = split(r"-\d", package_data, maxsplit=1)[0]
if ":" in package_name:
package_name, package_version = split(":", package_name)
package_version = search(r"\d+", package_version)
Expand Down
Loading