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>2018-06-04 09:54:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-04 09:54:40 +0300
commit7719c110064fc6f90c93c5339681b7dd9f5cbd63 (patch)
tree6939cd7d5eeeb083d9846ea1945a74dd4a4dc3cb /source/blender/python/generic/blf_py_api.c
parent854db8951bc15a7545eea3ff2219a28897698ead (diff)
Cleanup: strip trailing space in Python module
Diffstat (limited to 'source/blender/python/generic/blf_py_api.c')
-rw-r--r--source/blender/python/generic/blf_py_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/blf_py_api.c b/source/blender/python/generic/blf_py_api.c
index 69f1e297b43..629335888e4 100644
--- a/source/blender/python/generic/blf_py_api.c
+++ b/source/blender/python/generic/blf_py_api.c
@@ -305,7 +305,7 @@ static PyObject *py_blf_rotation(PyObject *UNUSED(self), PyObject *args)
if (!PyArg_ParseTuple(args, "if:blf.rotation", &fontid, &angle))
return NULL;
-
+
BLF_rotation(fontid, angle);
Py_RETURN_NONE;