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_UnaryFunction1D.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_UnaryFunction1D.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp b/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp
index a9ca73003f5..f4de9edb962 100644
--- a/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp
+++ b/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp
@@ -64,7 +64,7 @@ static void UnaryFunction1D___dealloc__(BPy_UnaryFunction1D* self)
static PyObject * UnaryFunction1D___repr__(BPy_UnaryFunction1D* self)
{
- return PyUnicode_FromFormat("UnaryFunction1D");
+ return PyUnicode_FromString("UnaryFunction1D");
}
/*-----------------------BPy_UnaryFunction1D type definition ------------------------------*/