Skip to content

Commit

Permalink
fixup! fixup! Update scripts to reference new SP scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Apr 22, 2024
1 parent 835292d commit a193ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyscraper/sp_2024/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from .download import fetch_debates_for_dates
from .parse import tidy_up_html
from .convert import convert_to_twfy
from .convert import convert_xml_to_twfy
import click
from pathlib import Path
import datetime
Expand Down Expand Up @@ -104,7 +104,7 @@ def debates(
if convert:
if verbose:
print(f"Converting {file} to TheyWorkForYou format")
convert_to_twfy(file, output_dir, verbose=verbose)
convert_xml_to_twfy(file, output_dir, verbose=verbose)


if __name__ == "__main__":
Expand Down

0 comments on commit a193ed0

Please sign in to comment.