Bläddra i källkod

remove progress dots in title fetching

Nick Sweeting 6 år sedan
förälder
incheckning
fffeb21ad4
1 ändrade filer med 0 tillägg och 4 borttagningar
  1. 0 4
      archivebox/util.py

+ 0 - 4
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)