This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author AlexWaygood
Recipients AlexWaygood, krisp1506, lys.nikolaou, pablogsal
Date 2021-11-03.08:11:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635927078.03.0.920736631782.issue45699@roundup.psfhosted.org>
In-reply-to
Content
Hi! It's very hard to work out what the problem might be here if you don't show us the code that caused the error. Also, this site is for reporting bugs in the Python programming language itself, and this doesn't look like a bug in Python to me. You might be better off posting this question on Discuss (https://discuss.python.org/c/users/7), reddit, or StackOverflow.

Having said all that, it looks like you're passing in a list where a string is expected — `list` objects don't have a `find` method (https://docs.python.org/3/tutorial/datastructures.html), but `str` objects do (https://docs.python.org/3/library/stdtypes.html#str.find).

Good luck solving your problem :)
History
Date User Action Args
2021-11-03 08:11:18AlexWaygoodsetrecipients: + AlexWaygood, lys.nikolaou, pablogsal, krisp1506
2021-11-03 08:11:18AlexWaygoodsetmessageid: <1635927078.03.0.920736631782.issue45699@roundup.psfhosted.org>
2021-11-03 08:11:18AlexWaygoodlinkissue45699 messages
2021-11-03 08:11:17AlexWaygoodcreate