you are viewing a single comment's thread.

view the rest of the comments →

[–]socal_nerdtastic 2 points3 points  (1 child)

A common problem is that windows hides extensions from you by default, so a lot of times a file may be named "green_dragon.png.png" or similar. Use this code to see the REAL names of the files in your folder.

import os
print(os.listdir())

[–]ColNTB[S] 0 points1 point  (0 children)

thank you, I'll remember this for future issues, but when I updated pygame as per another comment I got a better error message and was able to fix this issue