Skip to content

Commit

Permalink
0.21.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored Sep 6, 2020
2 parents 3d12700 + aa437ec commit 6e647aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bellows/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR_VERSION = 0
MINOR_VERSION = 20
PATCH_VERSION = "0"
PATCH_VERSION = "1"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
3 changes: 2 additions & 1 deletion bellows/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ async def shutdown(self):
self._watchdog_task.cancel()
if self._reset_task and not self._reset_task.done():
self._reset_task.cancel()
self._ezsp.close()
if self._ezsp is not None:
self._ezsp.close()

async def form_network(self):
nwk = self.config[zigpy.config.CONF_NWK]
Expand Down

0 comments on commit 6e647aa

Please sign in to comment.