Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-04-28 20:55:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-28 20:55:59 +0400
commit3d9b4159a43231efdddd39a4bdcd156100dd7d9a (patch)
tree09341b6e97f354000f3263b4528a14ada788ea5e /source/blender/python/generic/py_capi_utils.c
parent1b63a5d815ed96ecc0d36d4b9f9a55b61ea06c63 (diff)
PyC_RunQuicky: Print filename when its missing
Diffstat (limited to 'source/blender/python/generic/py_capi_utils.c')
-rw-r--r--source/blender/python/generic/py_capi_utils.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/generic/py_capi_utils.c b/source/blender/python/generic/py_capi_utils.c
index 6f72a291a36..44b551cefcc 100644
--- a/source/blender/python/generic/py_capi_utils.c
+++ b/source/blender/python/generic/py_capi_utils.c
@@ -762,6 +762,9 @@ void PyC_RunQuicky(const char *filepath, int n, ...)
PyGILState_Release(gilstate);
}
+ else {
+ fprintf(stderr, "%s: '%s' missing\n", __func__, filepath);
+ }
}
/* generic function to avoid depending on RNA */