Skip to content

Commit

Permalink
Merge pull request #2174 from mrkanon/link_bugs
Browse files Browse the repository at this point in the history
Update bug report link in openscap_api.py
  • Loading branch information
jan-cerny authored Nov 12, 2024
2 parents e5f3ebc + fec9416 commit c2ba1cb
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit c2ba1cb

Please sign in to comment.