forked from M-Labs/thermostat
Remove exception too general
This commit is contained in:
parent
c3d7804898
commit
e162bcf210
@ -43,11 +43,7 @@ class Thermostat(QObject, metaclass=PropertyMeta):
|
|||||||
if self.task.exception() is not None:
|
if self.task.exception() is not None:
|
||||||
try:
|
try:
|
||||||
raise self.task.exception()
|
raise self.task.exception()
|
||||||
except (
|
except asyncio.TimeoutError:
|
||||||
Exception,
|
|
||||||
TimeoutError,
|
|
||||||
asyncio.exceptions.TimeoutError,
|
|
||||||
):
|
|
||||||
logging.error(
|
logging.error(
|
||||||
"Encountered an error while updating parameter tree.",
|
"Encountered an error while updating parameter tree.",
|
||||||
exc_info=True,
|
exc_info=True,
|
||||||
|
Loading…
Reference in New Issue
Block a user