Remove debug comment

This commit is contained in:
Cole Deck 2024-01-02 19:05:44 -06:00
parent 665503b1d6
commit 06c45dffa6

View File

@ -14,7 +14,7 @@ def try_download_datasheet(partnum):
sanitized_name = partnum.replace(" ", "") sanitized_name = partnum.replace(" ", "")
url = "https://catalog.belden.com/techdata/EN/" + sanitized_name + "_techdata.pdf" url = "https://catalog.belden.com/techdata/EN/" + sanitized_name + "_techdata.pdf"
print(url) #print(url)
try: try:
with requests.get(url, stream=True) as r: with requests.get(url, stream=True) as r:
#r.raise_for_status() #r.raise_for_status()