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>2020-10-04 17:54:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-04 17:56:29 +0300
commit1fa6881037c721601d16f8400d29d440e637fcd3 (patch)
treedd652c9457f3c2e98c4cf1860496396920e4bc6e
parent270fb4d82b0fc807e7ff192edd5309a359fdd0b8 (diff)
Cleanup: remove outdated comment
Should have been removed in b36a05bb7e794335e3415594c41d3986cdc815e8, when Python was started after reading the preferences.
-rw-r--r--source/creator/creator.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 7b279edb6b0..80cae248c67 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -466,16 +466,7 @@ int main(int argc,
WM_init(C, argc, (const char **)argv);
}
-#ifdef 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
+#ifndef WITH_PYTHON
printf(
"\n* WARNING * - Blender compiled without Python!\n"
"this is not intended for typical usage\n\n");