Skip to content

Commit

Permalink
increase reported info
Browse files Browse the repository at this point in the history
  • Loading branch information
threnjen committed Nov 26, 2024
1 parent f6ef862 commit 1f1c1ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/bgg_scraper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _run_scrapy_scraper(self, scraper_urls_raw) -> None:
def _combine_xml_files_to_master(self) -> str:
"""Combine the XML files into a single XML file"""

print(f"Combining XML files for {self.file_group}")
print(f"\n\nCombining XML files for {self.file_group}")

print(get_local_keys_based_on_env(self.scraped_files_folder))

Expand All @@ -214,6 +214,7 @@ def _combine_xml_files_to_master(self) -> str:
for x in get_local_keys_based_on_env(self.scraped_files_folder)
if self.file_group in x and "combined" not in x and ".gitkeep" not in x
]
print(f"{saved_files}\n\n")

# Parse the first XML file to get the root and header
tree = ET.parse(saved_files[0])
Expand Down

0 comments on commit 1f1c1ce

Please sign in to comment.