mirror of
https://github.com/nmap/nmap.git
synced 2026-09-01 07:52:57 +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
|
|
@ -235,7 +235,7 @@ class ScanHostsView(HIGVBox, object):
|
|||
try:
|
||||
child = self.scrolled.get_child()
|
||||
self.scrolled.remove(child)
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def _set_scrolled(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue