From 9f3e23f991d329f9e20232e07dff9c85138f454a Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 16 Oct 2017 19:21:07 -0700 Subject: [PATCH] Error message for finding image paths --- helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.py b/helpers.py index 3486906e..0a645928 100644 --- a/helpers.py +++ b/helpers.py @@ -422,7 +422,7 @@ def get_full_image_path(image_file_name): for path in possible_paths: if os.path.exists(path): return path - raise IOError("File not Found") + raise IOError("File %s not Found"%image_file_name) def drag_pixels(frames): curr = frames[0]