The other posts are difficult to apply to my issue.
Basically the code starts out by prompting the user to turn "right" or "left". When I choose "right" it takes me to the "cthulhu room" function and prompts me to either "flee" or get my "head" eaten. Whether I choose "flee" or "head" I always get the error in the title. What's weird is that the book I'm using has the code listed exactly like this, and I even found video on youtube with the exact same code and the guy was able to get the intened results from the "cthulhu" function.
Code:
def cthulhu_room():
print "Here you see the great evil Cthulhu."
print "He, it, whatever stares at you and you go insane."
print "Do you flee for your life or eat your head?"
next == raw_input("> ")
if "flee" in next:
start()
elif "head" in next:
dead("Well that was tasty!")
else:
cthulhu_room()