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:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-08-10 06:07:34 +0400
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2009-08-10 06:07:34 +0400
commitde759dd2788eebb033d379aa9a932c9775c5c561 (patch)
treeeb6b9b31b88abf54c496cf5edc0d1c046be13da6
parent5fddab3fd8d6ff183f0a322b19231840b73c1239 (diff)
Wrap message with " as the ' was giving issues.
-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 6751ab59396..3a47691e79f 100644
--- a/source/blender/python/intern/bpy_util.h
+++ b/source/blender/python/intern/bpy_util.h
@@ -28,7 +28,7 @@
#define BPY_UTIL_H
#if PY_VERSION_HEX < 0x03010000
-#error Python versions below 3.1 are not supported anymore, you'll need to update your python.
+#error "Python versions below 3.1 are not supported anymore, you'll need to update your python."
#endif
#include "RNA_types.h" /* for EnumPropertyItem only */