diff --git a/06_breadth-first_search/python/01_breadth-first_search.py b/06_breadth-first_search/python/01_breadth-first_search.py index aac8e8c..4fefda8 100644 --- a/06_breadth-first_search/python/01_breadth-first_search.py +++ b/06_breadth-first_search/python/01_breadth-first_search.py @@ -23,7 +23,7 @@ def search(name): # Only search this person if you haven't already searched them. if person not in searched: if person_is_seller(person): - print person + " is a mango seller!" + print(person + " is a mango seller!") return True else: search_queue += graph[person]