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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-05-23 16:10:31 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-05-23 16:10:31 +0400
commit2212564f1804e3cc866003b226eac89575d53ade (patch)
tree400e453e3995c849dde449236ab28a8e22c65692 /source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
parentff3c742211a96fc0c1267fc0cab502bb16cfdba8 (diff)
Fixed invalid use of PyUnicode_FromFormat() where PyUnicode_FromString()
should have been used.
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
index 4db7110ac29..3d4ec47c6f7 100644
--- a/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
+++ b/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp
@@ -125,7 +125,7 @@ static PyObject * StrokeAttribute___repr__(BPy_StrokeAttribute* self)
<< " - R: " << self->sa->getThicknessR()
<< " L: " << self->sa->getThicknessL();
- return PyUnicode_FromFormat( repr.str().c_str() );
+ return PyUnicode_FromString( repr.str().c_str() );
}