0

added a link to the world examples in the readme.

Also clarified an error message
This commit is contained in:
Andrew Brown
2010-09-21 22:37:45 -04:00
parent 7278286599
commit 95f6342154
2 changed files with 4 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ def _find_file(filename, mode="rb"):
if os.path.exists(path):
return open(path, mode)
raise IOError("Could not find the file {0}".format(filename))
raise IOError("Could not find the file {0}. Is Minecraft installed? If so, I couldn't find the minecraft.jar file.".format(filename))
def _load_image(filename):
"""Returns an image object"""