mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 12:41:29 +00:00
Avoid handling BaseException, so SysExit and KeyboardInterrupt are propagated. #1834
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user