fixed minor bug in parse-link-check.py

This commit is contained in:
Kevin Putnam
2019-01-25 14:03:37 -08:00
parent ab298911a2
commit 9fa729a2d1
@@ -81,7 +81,7 @@ with open (outFilePath, "w") as outF:
print("See ./" + outFilePath + " for a detailed breakdown of broken links.")
if numBrokenLinks != 0:
print (numBrokenLinks + " detected. Exiting with error code 255.")
print (str(numBrokenLinks) + " detected. Exiting with error code 255.")
sys.exit(-1)
else:
print ("No unexpected broken links detected.")