Skip to content

Commit

Permalink
Changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
iarspider committed Dec 18, 2024
1 parent 17bcc49 commit b8adf9e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions buildLogAnalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ def makeHTMLLogFile(self, pkg):
)

newLine = newLine.replace(
m.group("full_path"), '<a href="' + url + '">' + m.group("full_path") + "</a>", 1
m.group("full_path"),
'<a href="' + url + '">' + m.group("full_path") + "</a>",
1,
)
newLine = (
"<span class="
Expand Down Expand Up @@ -788,7 +790,7 @@ def main(argv=None):
pkgList = os.getenv("CMSSW_BASE", None)
if pkgList:
pkgList += "/src/PackageList.cmssw"
rel = os.getenv("CMSSW_VERSION", None)
rel = os.getenv("CMSSW_VERSION", "master")
igWarning = []
if argv is None:
argv = sys.argv
Expand Down

0 comments on commit b8adf9e

Please sign in to comment.