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-05-05 05:11:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-05-05 05:11:39 +0300
commit909506200a52d7520992db96f8c58d7f7b439011 (patch)
tree15e7ec5f2bf799cfdb7b6805cf5f85e227cf1fce /source/blender/editors/space_info/info_ops.c
parentd08cc63e2f98b6aa027639354fc6675bb3d7cf3f (diff)
Cleanup: quiet warning about description ending with '.'
Diffstat (limited to 'source/blender/editors/space_info/info_ops.c')
-rw-r--r--source/blender/editors/space_info/info_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_info/info_ops.c b/source/blender/editors/space_info/info_ops.c
index 9365a5958cc..d1525af5009 100644
--- a/source/blender/editors/space_info/info_ops.c
+++ b/source/blender/editors/space_info/info_ops.c
@@ -73,8 +73,8 @@ void FILE_OT_pack_libraries(wmOperatorType *ot)
ot->name = "Pack Linked Libraries";
ot->idname = "FILE_OT_pack_libraries";
ot->description =
- "Store all data-blocks linked from other .blend files in the current .blend file. Library "
- "references are preserved so the linked data-blocks can be unpacked again.";
+ "Store all data-blocks linked from other .blend files in the current .blend file. "
+ "Library references are preserved so the linked data-blocks can be unpacked again";
/* api callbacks */
ot->exec = pack_libraries_exec;