def monthly_build_list_regex()

in mozdownload/scraper.py [0:0]


    def monthly_build_list_regex(self):
        """Return the regex for the folder containing builds of a month."""
        # Regex for possible builds for the given date
        return r'nightly/%(YEAR)s/%(MONTH)s/' % {
            'YEAR': self.date.year,
            'MONTH': str(self.date.month).zfill(2)}