droopescan
droopescan copied to clipboard
Trying to Update (TypeError: a bytes-like object is required, not 'str')
When im trying 'sudo ./droopescan update --update drupal' i have this except: for line in tags_content.split('\n'): TypeError: a bytes-like object is required, not 'str' What's wrong?
I would try python 2? I think the update portion of hte code does not support python 3.
Alternatively you can update that to be like tags_content.split(b'\n'), a few more changes like that would be needed and I am happy to accept a merge for that.