From dc3d9f1f6df17c01ed6f4b03595acd739191ebc3 Mon Sep 17 00:00:00 2001 From: Gosha Shien <64042558+sh13n@users.noreply.github.com> Date: Fri, 26 Feb 2021 04:47:31 +0200 Subject: [PATCH] Fixed 'warn' function deprecation warning --- noisy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/noisy.py b/noisy.py index 26b712a..0a41eb8 100644 --- a/noisy.py +++ b/noisy.py @@ -238,13 +238,13 @@ def crawl(self): self._browse_from_links() except requests.exceptions.RequestException: - logging.warn("Error connecting to root url: {}".format(url)) + logging.warning("Error connecting to root url: {}".format(url)) except MemoryError: - logging.warn("Error: content at url: {} is exhausting the memory".format(url)) + logging.warning("Error: content at url: {} is exhausting the memory".format(url)) except LocationParseError: - logging.warn("Error encountered during parsing of: {}".format(url)) + logging.warning("Error encountered during parsing of: {}".format(url)) except self.CrawlerTimedOut: logging.info("Timeout has exceeded, exiting")