Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Remove string end symbols for searching archives on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
DotBow committed May 19, 2021
1 parent 002a72c commit d9dd180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/threads/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def scrap_download_links(self, url, branch_type, _limit=None):
if build_info is not None:
self.links.emit(build_info)
elif platform == 'Linux':
for tag in soup.find_all(limit=_limit, href=re.compile(r'blender-.+lin.+64.+tar$')):
for tag in soup.find_all(limit=_limit, href=re.compile(r'blender-.+lin.+64.+tar')):
build_info = self.new_blender_build(tag, url, branch_type)

if build_info is not None:
Expand Down

0 comments on commit d9dd180

Please sign in to comment.