tools/kvm_stat: catch curses exceptions only
The previous version was catching all exceptions, including SIGINT. We only want to catch the curses exceptions here. Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com> Reviewed-by: Janosch Frank <frankja@linux.vnet.ibm.com> Reviewed-by: Sascha Silbe <silbe@linux.vnet.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.vnet.ibm.com> Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
This commit is contained in:
Родитель
a0b4e6a032
Коммит
9fc0adfc42
|
@ -809,7 +809,7 @@ class Tui(object):
|
||||||
# return from C start_color() is ignorable.
|
# return from C start_color() is ignorable.
|
||||||
try:
|
try:
|
||||||
curses.start_color()
|
curses.start_color()
|
||||||
except:
|
except curses.error:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# Hide cursor in extra statement as some monochrome terminals
|
# Hide cursor in extra statement as some monochrome terminals
|
||||||
|
|
Загрузка…
Ссылка в новой задаче