def get_record(self, record, dbmanager):
# run parent class
_datadict = super(WnsThread,self).get_record(record,dbmanager)
# actual time stamp
_time_ts = _datadict['dateTime']
try:
if 'outTempDayMax' not in _datadict:
_result = dbmanager.getSql(
"SELECT min,max FROM %s "If I replace "archive_day_outTemp" by dbmanager.table_name, then no exception is raised any more, but the "archive" table is read instead of the table I want to read. So I see the problem is within the getSql() statement. But I have no clue.
I only wonder why those summeries are calculated, then. To no purpose? I don't know.
--
You received this message because you are subscribed to the Google Groups "weewx-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-developm...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/1729b30f-48cd-47c7-bfdc-c1efc7505f23o%40googlegroups.com.