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
File "XXXX/site-packages/tenable/io/scans.py", line 1205, in list
lm = int(time.mktime(last_modified).timetuple())
AttributeError: 'float' object has no attribute 'timetuple'
Expected behavior
A clear and concise description of what you expected to happen.
System Information (please complete the following information):
OS: Ubuntu budgie
Architecture: 64bit
Version 22.04
Memory 16GB
Additional context
To fix it, you only have to replace the affected line with:
lm=int(time.mktime(start_time.timetuple()))
The text was updated successfully, but these errors were encountered:
Describe the bug
Sin this change, a few weeks ago, the method "list" of "scans.py" of "Tenable IO" is not working with the parameter "last_modified".
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
System Information (please complete the following information):
Additional context
To fix it, you only have to replace the affected line with:
The text was updated successfully, but these errors were encountered: