mirror of
https://github.com/nmap/nmap.git
synced 2026-09-04 09:32:16 +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
|
|
@ -321,7 +321,7 @@ class NmapOutputViewer (gtk.VBox):
|
|||
buf = self.text_view.get_buffer()
|
||||
try:
|
||||
running = (command is not None and command.scan_state() is True)
|
||||
except:
|
||||
except Exception:
|
||||
running = False
|
||||
complete = False
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue