Jan-16-2019, 03:49 PM
(This post was last modified: Jan-16-2019, 03:49 PM by ichabod801.)
Then I am guessing your equality is failing on line 28. From line 25 planner appears to be an iterable, maybe either a list or a tuple. But the equality is comparing the string from the input on line 26 to the iterable, which is never going to match.
Edit: If one of the items in the iterable is a string that is meant to match the input, you need to compare to that, not to the whole iterable.
Edit: If one of the items in the iterable is a string that is meant to match the input, you need to compare to that, not to the whole iterable.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures