aboutsummaryrefslogtreecommitdiff
path: root/package_scanner.nim
diff options
context:
space:
mode:
Diffstat (limited to 'package_scanner.nim')
-rw-r--r--package_scanner.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/package_scanner.nim b/package_scanner.nim
index 828bcc9..0a8a572 100644
--- a/package_scanner.nim
+++ b/package_scanner.nim
@@ -63,9 +63,8 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool =
try:
discard getContent(url, timeout=10000)
except HttpRequestError, TimeoutError:
- echo "E: ", name, ": unable to fetch repository ", url, " ",
+ echo "W: ", name, ": unable to fetch repo ", url, " ",
getCurrentExceptionMsg()
- result = false
except AssertionError:
echo "W: ", name, ": httpclient failed ", url, " ",
getCurrentExceptionMsg()