On Tuesday, September 27, 2016 at 12:15:59 PM UTC-4, fraban wrote: > > > Sep 27 18:10:04 raspberrypi weewx[2826]: **** File > "/usr/share/weewx/user/wlink.py", line 219, in unpack_archive_packet > Sep 27 18:10:04 raspberrypi weewx[2826]: **** packet['interval'] > = self.archive_interval() / 60 > Sep 27 18:10:04 raspberrypi weewx[2826]: **** TypeError: 'int' object > is not callable > Sep 27 18:10:04 raspberrypi weewx[2826]: **** Exiting. > > > frank,
on line 219 of wlink.py, change this: packet['interval'] = self.archive_interval() / 60 to this: packet['interval'] = self.archive_interval / 60 m -- 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]. For more options, visit https://groups.google.com/d/optout.
