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>2011-03-09 01:11:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-09 01:11:15 +0300
commit65273cf82ff165e056042dada073ee9b905bed4a (patch)
treeeebb405da6e81e3778d3eb22265ccd3fa17d3668 /source/blender/python/intern
parent94b5fd6eb94e69e25d8f6c193096014abeb93e0e (diff)
- correct python3.1 warning message.
- for new shadow only enum, use humanly readable RNA enum values. - update cmake unix example for custom python.
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h
index 606eefc8960..7d1947a5a52 100644
--- a/source/blender/python/intern/bpy_util.h
+++ b/source/blender/python/intern/bpy_util.h
@@ -31,7 +31,7 @@
#define BPY_UTIL_H
#if PY_VERSION_HEX < 0x03020000
-#error "Python versions below 3.1 are not supported anymore, you'll need to update your python."
+#error "Python 3.2 or greater is required, you'll need to update your python."
#endif
#include "RNA_types.h" /* for EnumPropertyItem only */