From a81c1c80a89d20b67cee6399946292350aac79b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 22 Feb 2017 16:02:44 +0100 Subject: [PATCH] Explicitly use bl_description instead of defaulting to __doc__ __doc__ should end in a period, and bl_description shouldn't. --- blender_cloud/blender.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blender_cloud/blender.py b/blender_cloud/blender.py index 1143952..bfaf061 100644 --- a/blender_cloud/blender.py +++ b/blender_cloud/blender.py @@ -248,6 +248,7 @@ class PillarCredentialsUpdate(pillar.PillarOperatorMixin, """Updates the Pillar URL and tests the new URL.""" bl_idname = 'pillar.credentials_update' bl_label = 'Update credentials' + bl_description = 'Updates the Pillar URL and tests the new URL' log = logging.getLogger('bpy.ops.%s' % bl_idname) @@ -294,6 +295,7 @@ class PILLAR_OT_subscribe(Operator): """Opens a browser to subscribe the user to the Cloud.""" bl_idname = 'pillar.subscribe' bl_label = 'Subscribe to the Cloud' + bl_description = 'Opens a browser to subscribe the user to the Cloud' def execute(self, context): import webbrowser