From c759b20f8e72462fd99f0ca734c51cc274be6330 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Sat, 25 Feb 2012 21:44:21 -0500 Subject: [PATCH] added helpful notice about running into corrupted tiles --- overviewer_core/tileset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/tileset.py b/overviewer_core/tileset.py index cf39271..74d2684 100644 --- a/overviewer_core/tileset.py +++ b/overviewer_core/tileset.py @@ -777,7 +777,7 @@ class TileSet(object): img.paste(quad, path[0]) except Exception, e: logging.warning("Couldn't open %s. It may be corrupt. Error was '%s'", path[1], e) - logging.warning("I'm going to try and delete it. You will need to run the render again") + logging.warning("I'm going to try and delete it. You will need to run the render again and with --check-tiles") try: os.unlink(path[1]) except Exception, e: