PyC_RunQuicky: Print filename when its missing

This commit is contained in:
Campbell Barton 2014-04-29 02:55:02 +10:00
parent 1b63a5d815
commit 3d9b4159a4

@ -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 */