From fae28114f4503d6bd91e6034bfbccc5d51f2eda9 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Thu, 8 Mar 2012 13:58:28 -0500 Subject: [PATCH] changed error message for missing texture file --- overviewer_core/textures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/textures.py b/overviewer_core/textures.py index 0fa086e..db0a2ce 100644 --- a/overviewer_core/textures.py +++ b/overviewer_core/textures.py @@ -213,7 +213,7 @@ class Textures(object): if verbose: logging.info("Found %s in '%s'", filename, path) return open(path, mode) - raise IOError("Could not find the file `{0}'. You can either place it in the same place as overviewer.py, use --textures-path, or install the Minecraft client.".format(filename)) + raise IOError("Could not find the file `{0}'. Try specifying the 'texturepath' option in your config file. Set it to the directory where I can find {0}.".format(filename)) def load_image(self, filename): """Returns an image object"""