1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-08 21:51:28 +00:00

Last typos from r39185

This commit is contained in:
dmiller
2025-05-30 00:08:02 +00:00
parent 340947fa29
commit b0fa243821
2 changed files with 4 additions and 4 deletions

View File

@@ -729,9 +729,9 @@ class TraceroutePage(BWVBox):
self.__trace_scroll.add_with_viewport(self.__trace_treeview)
self.__trace_info = {port = self.__node.get_info('trace')['port'],
proto = self.__node.get_info('trace')['protocol'],
hops = len(self.__node.get_info('trace')['hops'])}
self.__trace_info = {'port': self.__node.get_info('trace')['port'],
'proto': self.__node.get_info('trace')['protocol'],
'hops': len(self.__node.get_info('trace')['hops'])}
self.__trace_label = BWLabel(TRACE_TEXT % self.__trace_info)
self.__trace_label.set_use_markup(True)