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>2021-09-09 09:26:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-09 09:26:15 +0300
commit3da09f4e2992bcd3f6d3f26489ed18c53cd1cc22 (patch)
tree02f48ac05062d9c83084a8e79cf27998bd6ebc82 /source/blender/python/intern/bpy_interface.c
parentbda9e4238a07a72c26598ea9025e00f6ca896750 (diff)
Cleanup: remove newlines from logging text
Line endings are already added.
Diffstat (limited to 'source/blender/python/intern/bpy_interface.c')
-rw-r--r--source/blender/python/intern/bpy_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index 68731a91dc9..7a93a076621 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -753,7 +753,7 @@ int BPY_context_member_get(bContext *C, const char *member, bContextDataResult *
CLOG_INFO(BPY_LOG_CONTEXT, 1, "'%s' not a valid type", member);
}
else {
- CLOG_INFO(BPY_LOG_CONTEXT, 1, "'%s' not found\n", member);
+ CLOG_INFO(BPY_LOG_CONTEXT, 1, "'%s' not found", member);
}
}
else {