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

Update bug report link in openscap_api.py #2174

Merged
merged 1 commit into from
Nov 12, 2024
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
6 changes: 3 additions & 3 deletions swig/openscap_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ def init(self, path, paths={}):
if OSCAP.oscap_err():
desc = OSCAP.oscap_err_desc()
else:
desc = "Unknown error, please report this bug (http://bugzilla.redhat.com/)"
desc = "Unknown error, please report this bug (https://github.com/OpenSCAP/openscap/issues)"
raise ImportError(
"Benchmark \"%s\" loading failed: %s" % (f_XCCDF, desc))

Expand All @@ -832,7 +832,7 @@ def init(self, path, paths={}):
if OSCAP.oscap_err():
desc = OSCAP.oscap_err_desc()
else:
desc = "Unknown error,please report this bug (http://bugzilla.redhat.com/)"
desc = "Unknown error,please report this bug (https://github.com/OpenSCAP/openscap/issues)"
raise ImportError(
"Cannot import definition model for \"%s\": %s" % (f_OVAL, desc))
def_models.append(def_model)
Expand All @@ -841,7 +841,7 @@ def init(self, path, paths={}):
if OSCAP.oscap_err():
desc = OSCAP.oscap_err_desc()
else:
desc = "Unknown error,please report this bug (http://bugzilla.redhat.com/)"
desc = "Unknown error,please report this bug (https://github.com/OpenSCAP/openscap/issues)"
raise ImportError(
"Cannot create agent session for \"%s\": %s" % (f_OVAL, desc))
sessions[file] = sess
Expand Down
Loading