From 214b24e025d950dbc54520daef0073f9e03db887 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Mon, 6 Mar 2023 14:09:44 +0100 Subject: [PATCH] Cleanup: Fix incorrectly formatted multi-line docstring This has the effect that the message is cut off at the end of the first line. I copied the solution from other similar docstrings elsewhere in the code. As far as my regex-fu can tell, there are no other occurrences of this in the codebase. Issue reported by Joan Pujolar in #43295. Pull Request #105474 --- scripts/startup/bl_operators/freestyle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/startup/bl_operators/freestyle.py b/scripts/startup/bl_operators/freestyle.py index 80520450786..12d19b19a84 100644 --- a/scripts/startup/bl_operators/freestyle.py +++ b/scripts/startup/bl_operators/freestyle.py @@ -13,8 +13,8 @@ from bpy.props import ( class SCENE_OT_freestyle_fill_range_by_selection(Operator): - """Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object """ - """(either a user-specified object or the active camera)""" + """Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object """ \ + """(either a user-specified object or the active camera)""" bl_idname = "scene.freestyle_fill_range_by_selection" bl_label = "Fill Range by Selection" bl_options = {'INTERNAL'}