mirror of
https://github.com/nmap/nmap.git
synced 2026-07-11 18:55:08 +00:00
Avoid handling BaseException, so SysExit and KeyboardInterrupt are propagated. #1834
This commit is contained in:
parent
74708c3e3a
commit
d75e255113
17 changed files with 24 additions and 24 deletions
|
|
@ -313,7 +313,7 @@ class ScriptInterface:
|
|||
def script_list_timer_callback(self, process, callback):
|
||||
try:
|
||||
status = process.scan_state()
|
||||
except:
|
||||
except Exception:
|
||||
status = None
|
||||
log.debug("Script interface: script_list_timer_callback %s" %
|
||||
repr(status))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue