We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d52591 commit a19ea1cCopy full SHA for a19ea1c
1 file changed
libnmap/process.py
@@ -260,7 +260,7 @@ def run(self):
260
261
while self.__nmap_proc.poll() is None:
262
for streamline in iter(self.__nmap_proc.stdout.readline, ''):
263
- self.__stdout += streamline
+ self.__stdout += str(streamline)
264
evnt = self.__process_event(streamline)
265
if self.__nmap_event_callback and evnt:
266
self.__nmap_event_callback(self)
0 commit comments