Hi,
when I try to catch ctrl+c with
except KeyboardInterru pt:
pychecker tells me
Catching a non-Exception object (KeyboardInterr upt)
It works fine, but the message indicates that it's not completely clean.
How should I write the exception correctly?
Thanks,
Michael
when I try to catch ctrl+c with
except KeyboardInterru pt:
pychecker tells me
Catching a non-Exception object (KeyboardInterr upt)
It works fine, but the message indicates that it's not completely clean.
How should I write the exception correctly?
Thanks,
Michael
Comment