mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 06:01:28 +00:00
Fix a crash in Zenmap Compare Results.
This commit is contained in:
@@ -302,7 +302,10 @@ class ScanChooser(HIGVBox):
|
||||
def get_nmap_output(self):
|
||||
"""Return the currently selected scan's output as a string, or None if
|
||||
no valid scan is selected."""
|
||||
return self.parsed_scan.get_nmap_output()
|
||||
if self.parsed_scan is not None:
|
||||
return self.parsed_scan.get_nmap_output()
|
||||
else:
|
||||
return None
|
||||
|
||||
nmap_output = property(get_nmap_output)
|
||||
parsed_scan = property(get_parsed_scan)
|
||||
|
||||
Reference in New Issue
Block a user