pcuenq HF Staff commited on
Commit
c861dc2
·
verified ·
1 Parent(s): b58cfff

Return everything

Browse files
Files changed (1) hide show
  1. fetch_cc_from_bucket.py +1 -1
fetch_cc_from_bucket.py CHANGED
@@ -62,7 +62,7 @@ def main():
62
  content = fetch_page_from_bucket(records, args.bucket_path)
63
  if content is not None:
64
  print(f"Fetched {len(content)} bytes")
65
- print(content[:500].decode("utf-8", errors="replace"))
66
 
67
  if __name__ == "__main__":
68
  main()
 
62
  content = fetch_page_from_bucket(records, args.bucket_path)
63
  if content is not None:
64
  print(f"Fetched {len(content)} bytes")
65
+ print(content.decode("utf-8", errors="replace"))
66
 
67
  if __name__ == "__main__":
68
  main()