From 52959ac2bfe9f1c37b4888f2c23cfda0a863c2c5 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 26 Sep 2011 21:05:01 -0700 Subject: [PATCH] DOC: Use correct location of blank_image in example generator. --- doc/ext/gen_rst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ext/gen_rst.py b/doc/ext/gen_rst.py index 0cf8cbd2..cdef3fbd 100644 --- a/doc/ext/gen_rst.py +++ b/doc/ext/gen_rst.py @@ -281,7 +281,7 @@ def generate_file_rst(fname, target_dir, src_dir, plot_gallery): if not os.path.exists(thumb_file): # create something not to replace the thumbnail - shutil.copy('images/blank_image.png', thumb_file) + shutil.copy('source/auto_examples/images/blank_image.png', thumb_file) docstring, short_desc, end_row = extract_docstring(example_file)