From 0d84ee1c24670d145df1c72329909d4ebc44a1ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 1 May 2017 02:39:06 +0200 Subject: [PATCH] make pylint happy --- qubes/vm/qubesvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/vm/qubesvm.py b/qubes/vm/qubesvm.py index 880de9a0..28649f14 100644 --- a/qubes/vm/qubesvm.py +++ b/qubes/vm/qubesvm.py @@ -894,7 +894,7 @@ class QubesVM(qubes.vm.mix.net.NetVMMixin, qubes.vm.BaseVM): if self.is_running() or self.is_paused(): # This avoids losing the exception if an exception is raised in # self.force_shutdown(), because the vm is not running or paused - yield from self.kill() + yield from self.kill() # pylint: disable=not-an-iterable raise asyncio.ensure_future(self._wait_for_session())