Re: [Qemu-devel] [PATCH v8 07/13] qemu.py: close _qemu_log_path on cleanup

2017-09-04 Thread Fam Zheng
On Fri, 09/01 13:28, Amador Pahim wrote: > We are opening the _qemu_log_path during the launch() but we are > forgetting to close it. > > This patch makes sure we will close the self._qemu_log_path during the > cleanup (post_shutdown()). > > Signed-off-by: Amador Pahim > --- > scripts/qemu.py |

[Qemu-devel] [PATCH v8 07/13] qemu.py: close _qemu_log_path on cleanup

2017-09-01 Thread Amador Pahim
We are opening the _qemu_log_path during the launch() but we are forgetting to close it. This patch makes sure we will close the self._qemu_log_path during the cleanup (post_shutdown()). Signed-off-by: Amador Pahim --- scripts/qemu.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scrip