Skip to content

Commit

Permalink
format string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed Dec 13, 2023
1 parent d34a021 commit 81a0a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydar/updateCsvFeatureNameDetails.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def updateCsvFeatureNameDetails():
base_url = "https://planetarynames.wr.usgs.gov"
for i, feature_ahref in enumerate(ahref_lst):
feature_html = request.urlopen(base_url + feature_ahref)
logger.info(f"[{i+1}/{len(ahref_lst)}] Retrieving: {base_url + feature_ahref}"
logger.info(f"[{i+1}/{len(ahref_lst)}] Retrieving: {base_url + feature_ahref}")
soup = BeautifulSoup(feature_html, 'html.parser')
table = soup.find("div", {"id":"layout_content_wrapper"})
tr = table.find_all("tr")
Expand Down

0 comments on commit 81a0a7b

Please sign in to comment.