Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mips2648 committed May 10, 2024
1 parent 0fa8ae9 commit 0960496
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jeedomdaemon/base_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def stop(self):

if self.__on_stop_cb is not None:
self._logger.info("create on stop callback task")
stop_task = asyncio.create_task(self.__on_stop_cb)
stop_task = asyncio.create_task(self.__on_stop_cb())
asyncio.gather(stop_task)
self._logger.info("on stop callback task done")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Needed for dependencies
install_requires=['aiohttp'],
# *strongly* suggested for sharing
version='0.8.1',
version='0.8.2',
# The license can be anything you like
license='MIT',
description='A base to implement Jeedom daemon in python',
Expand Down

0 comments on commit 0960496

Please sign in to comment.