diff options
author | Maxim Devaev <[email protected]> | 2022-07-23 11:17:36 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-07-24 05:38:26 +0300 |
commit | de140537254a517559c78de048791a197011c1f6 (patch) | |
tree | 48560052d4f49bd4a1d6bb08b1e7ce1a4e2874b8 /kvmd/plugins/msd/otg/__init__.py | |
parent | baeb2bc35b82ea12777100d70156e74fb162325a (diff) |
refactoring
Diffstat (limited to 'kvmd/plugins/msd/otg/__init__.py')
-rw-r--r-- | kvmd/plugins/msd/otg/__init__.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/kvmd/plugins/msd/otg/__init__.py b/kvmd/plugins/msd/otg/__init__.py index dde50fa1..1f670de5 100644 --- a/kvmd/plugins/msd/otg/__init__.py +++ b/kvmd/plugins/msd/otg/__init__.py @@ -388,13 +388,8 @@ class Plugin(BaseMsd): # pylint: disable=too-many-instance-attributes # ===== async def __close_writer(self) -> None: - try: - if self.__writer: - get_logger().info("Closing new image file ...") - await self.__writer.close() - except Exception: - get_logger().exception("Can't close image file") - finally: + if self.__writer: + await self.__writer.close() self.__writer = None # ===== |