You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to parse a .nessus file. this file was created by a scan that has not had issues in previous. I have attempted to re run the scan change file name. Error message still occurs.
[action=info] [source_file_name=ERROR Parsing [1/1] nessus files]
[action=info] [source_file_name=unsupported operand type(s) for +=: 'NoneType' and 'int']
The text was updated successfully, but these errors were encountered:
The error messages indicate that there is an issue with the code that attempts to concatenate a NoneType and an int in the log_emitter function. To fix this, you can modify the code as follows:
self.signal.emit(str(notification)) # Convert notification to a string before emitting it
By adding str(notification), you ensure that the notification is converted to a string before being emitted. This should resolve the error caused by concatenating a NoneType and an int.
Please note that the provided code snippet assumes that self.signal is a valid signal object capable of emitting the notification.
Trying to parse a .nessus file. this file was created by a scan that has not had issues in previous. I have attempted to re run the scan change file name. Error message still occurs.
[action=info] [source_file_name=ERROR Parsing [1/1] nessus files]
[action=info] [source_file_name=unsupported operand type(s) for +=: 'NoneType' and 'int']
The text was updated successfully, but these errors were encountered: