Bug in certification project?

Hi there!

I went back to adjust an already submitted certification project after realising I’d forgotten to add in “print” statements so that my output would make sense (despite them not being there, the project gave me a pass anyway?)

But now when I check the certification project in my profile, the popup for it is just… gibberish. I don’t know if it’s because I had copy/pasted my answer from my Thonny editor (I usually copy/paste to there so I can keep copies on hand)?

This is the code I wanted to fix:

print("Tower of Hanoi Solution for 2 Disks")
print("=============")
print(hanoi_solver(2))
print("=============")
print("")
print("Tower of Hanoi Solution for 3 Disks")
print("=============")
hanoi_solver(3)
print("=============")
print("")
print("Tower of Hanoi Solution for 4 Disks")
print("=============")
hanoi_solver(4)
print("=============")
print("")
print("Tower of Hanoi Solution for 5 Disks")
print("=============")
hanoi_solver(5)
print("=============")
print("")


I had originally forgotten to add “print(hanoi_solver(n)” on 3 through 5. Idk if the tests just ran the tests through the one marked “print(hanoi_solver(2))”. But still, I only realized after submitting that my output was nonsense, hence wanting to fix it.

(I’m aware I’m probably not making much sense right now, but I hope this is semi-intelligible anyway. xD;)

Thank you for your time!

I think your solution is safe, and there is some issue with the encoding (at least hopefully)

would you mind opening a github issue about this?

It seems to have fixed itself overnight – my solution is now viewable from my profile. I don’t know if it was just my browser being weird or if it was an actual issue with fCC that got fixed. Would you still like me to open a github issue anyway?

if it happens again then please create an issue, I don’t think it would be possible to investigate if it’s not happening right now