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:
Diffstat (limited to 'release/ui/space_console.py')
-rw-r--r--release/ui/space_console.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/ui/space_console.py b/release/ui/space_console.py
index dbf202f924c..136082a285a 100644
--- a/release/ui/space_console.py
+++ b/release/ui/space_console.py
@@ -108,7 +108,7 @@ def get_console(console_id):
class CONSOLE_OT_exec(bpy.types.Operator):
'''
- Operator documentatuon text, will be used for the operator tooltip and python docs.
+ Execute the current console line as a python expression.
'''
__idname__ = "console.execute"
__label__ = "Console Execute"
@@ -385,7 +385,7 @@ def autocomp(bcon):
class CONSOLE_OT_autocomplete(bpy.types.Operator):
'''
- Operator documentatuon text, will be used for the operator tooltip and python docs.
+ Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one.
'''
__idname__ = "console.autocomplete"
__label__ = "Console Autocomplete"