1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 21:21:31 +00:00

Update calls to gtk.TextBuffer.get_text to include all args. Fixes #2739. Closes #2740.

This commit is contained in:
dmiller
2024-01-29 18:31:37 +00:00
parent 034ea73ce3
commit d4ee92478e
6 changed files with 14 additions and 6 deletions

View File

@@ -467,4 +467,5 @@ class HostDetails(HIGVBox):
def get_comment(self):
buffer = self.comment_txt_vw.get_buffer()
return buffer.get_text(buffer.get_start_iter(), buffer.get_end_iter())
return buffer.get_text(buffer.get_start_iter(), buffer.get_end_iter(),
include_hidden_chars=True)