Skip to content

Commit

Permalink
Add Fenix daily platform handling (mozilla#664) - add missing url to …
Browse files Browse the repository at this point in the history
…NotFoundError
  • Loading branch information
piri-p committed May 6, 2024
1 parent 01819e2 commit 583f68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mozdownload/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def get_latest_build_date(self):
parser = self._create_directory_parser(url)
parser.entries = parser.filter(r'.*%s' % self.platform_regex)
if not parser.entries:
raise errors.NotFoundError('No builds have been found')
raise errors.NotFoundError('No builds have been found', url)
parser.entries.sort()

date = ''.join(parser.entries[-1].split('-')[:6])
Expand Down

0 comments on commit 583f68e

Please sign in to comment.