fix bug in rev scraper script

Bug was a break, added for debugging, that caused the script to only
work for the first article.
This commit is contained in:
Benjamin Mako Hill 2020-04-01 15:49:28 -05:00
parent 95d37cff7a
commit 3f19805d36

View File

@ -141,8 +141,6 @@ def main():
rev['export_commit'] = export_git_short_hash
tsv_writer.writerow({k: rev[k] for k in tsv_fields})
break
if __name__ == "__main__":
main()