Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (2015) Python Data Types String concatenation

Alonso Sainz
Alonso Sainz
2,615 Points

Why do I get a message that says Oops! It looks like Task 1 is Next Step no longer passing.

It´s the second time its happend I do the code challenge and in the second step of the challenge when I submit the answer it tells me Oops! It looks like Task 1 is Next Step no longer passing. When i get wrong the second step it does tell me it´s wrong and when I pass to the second step it tells me its correct.

Christopher Shaw
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points

You need to post your code to help spot the error. It is most likely a syntax error (i.e spelling mistake) in your new code if you have not changed the code that passed task 1.

Enzo Cnop
Enzo Cnop
5,157 Points

This usually means that you changed something in your original code, after passing the first quiz. If you passed the 1st step, you should have code that reads:

name = "Thomas"

That's literally all the first task is asking you to grasp. You should complete the second task without altering or deleting the code (written above) that you wrote for your first task. Hope this helps!

1 Answer

Steven Parker
Steven Parker
231,007 Points

That message usually means you have a syntax error.

Since the checker re-tests the other steps in order, a newly-introduce syntax error will make all the steps fail, so it will say "Oops! It looks like Task 1 is no longer passing.". The code that previously passed may be unchanged, but the syntax error confuses the testing mechanism.

For a more complete analysis, show your code.