Cleanup: remove outdated comment

Should have been removed in b36a05bb7e,
when Python was started after reading the preferences.
This commit is contained in:
Campbell Barton
2020-10-05 01:54:12 +11:00
parent 270fb4d82b
commit 1fa6881037

View File

@@ -466,16 +466,7 @@ int main(int argc,
WM_init(C, argc, (const char **)argv); WM_init(C, argc, (const char **)argv);
} }
#ifdef WITH_PYTHON #ifndef WITH_PYTHON
/**
* \note the #U.pythondir string is NULL until #WM_init() is executed,
* so we provide the BPY_ function below to append the user defined
* python-dir to Python's `sys.path` at this point. Simply putting
* #WM_init() before #BPY_python_start() crashes Blender at startup.
*/
/* TODO: #U.pythondir */
#else
printf( printf(
"\n* WARNING * - Blender compiled without Python!\n" "\n* WARNING * - Blender compiled without Python!\n"
"this is not intended for typical usage\n\n"); "this is not intended for typical usage\n\n");