From 9fa729a2d1c1defa2f7432a150a7da0459eea7b9 Mon Sep 17 00:00:00 2001 From: Kevin Putnam Date: Fri, 25 Jan 2019 14:03:37 -0800 Subject: [PATCH] fixed minor bug in parse-link-check.py --- source/scripts/_python/linkcheck/parse-link-check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/scripts/_python/linkcheck/parse-link-check.py b/source/scripts/_python/linkcheck/parse-link-check.py index 9909cf1d..cc943731 100644 --- a/source/scripts/_python/linkcheck/parse-link-check.py +++ b/source/scripts/_python/linkcheck/parse-link-check.py @@ -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.")