From fffeb21ad461f285db405b285c267e9028ec5f6b Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 30 Mar 2019 15:50:32 -0400 Subject: [PATCH] remove progress dots in title fetching --- archivebox/util.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/archivebox/util.py b/archivebox/util.py index 1e785d43..487cfeab 100644 --- a/archivebox/util.py +++ b/archivebox/util.py @@ -251,10 +251,6 @@ def fetch_page_title(url: str, timeout: int=10, progress: bool=SHOW_PROGRESS) -> return None try: - if progress: - sys.stdout.write('.') - sys.stdout.flush() - html = download_url(url, timeout=timeout) match = re.search(HTML_TITLE_REGEX, html)