Yes. The function format.locale() was deprecated in Python 3.7, then removed in Python 3.12. It usually can be replaced with locale.format_string().
On Sat, Oct 18, 2025 at 1:15 AM Kevin Key <[email protected]> wrote: > Any idea as to what is causing this? > > (base) kevin@linux:/var/www/html/weewx$ sudo weectl report run > Using configuration file /etc/weewx/weewx.conf > All enabled reports will be run. > Generating as of last timestamp in the database. > Traceback (most recent call last): > File "/usr/share/weewx/weewx/reportengine.py", line 248, in run > obj.start() > File "/usr/share/weewx/weewx/reportengine.py", line 465, in start > self.run() > File "/usr/share/weewx/weewx/cheetahgenerator.py", line 166, in run > ngen = self.generate(gen_dict[section_name], section_name, self.gen_ts) > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > File "/usr/share/weewx/weewx/cheetahgenerator.py", line 226, in generate > ngen += self.generate(section[subsection], subsection, gen_ts) > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > File "/usr/share/weewx/weewx/cheetahgenerator.py", line 226, in generate > ngen += self.generate(section[subsection], subsection, gen_ts) > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > File "/usr/share/weewx/weewx/cheetahgenerator.py", line 309, in generate > searchList = self._getSearchList(encoding, timespan, > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > File "/usr/share/weewx/weewx/cheetahgenerator.py", line 401, in > _getSearchList > search_list += obj.get_extension_list(timespan, db_lookup) > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > File "/etc/weewx/bin/user/belchertown.py", line 612, in > get_extension_list > locale.format("%g", float(year_outTemp_max_range_total)), > ^^^^^^^^^^^^^ > AttributeError: module 'locale' has no attribute 'format'. Did you mean: > '_format'? > Done. > (base) kevin@linux:/var/www/html/weewx$ > > -- > You received this message because you are subscribed to the Google Groups > "weewx-user" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion visit > https://groups.google.com/d/msgid/weewx-user/ebefede5-5eb6-4882-ace6-c26b6330a6c5n%40googlegroups.com > <https://groups.google.com/d/msgid/weewx-user/ebefede5-5eb6-4882-ace6-c26b6330a6c5n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/weewx-user/CAPq0zEDbg%2BB3V554JNvC35jSsYL0_RZyxdcZFg16c7XZM19M3g%40mail.gmail.com.
