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:
authorDaniel Salazar <zanqdo@gmail.com>2010-02-11 23:33:04 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-02-11 23:33:04 +0300
commitac8b22ab2dbf98a90628862b4bef7a7ec6f3aaad (patch)
treed8316d0d6ac51859119fff00cea022ccbaf858be /release
parent1c4c833c86b38de435f9ed359e1719ed3b6a1f59 (diff)
Fix for a glitch in a console tooltip
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_console.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/ui/space_console.py b/release/scripts/ui/space_console.py
index 3e593246e2c..352c532a328 100644
--- a/release/scripts/ui/space_console.py
+++ b/release/scripts/ui/space_console.py
@@ -116,7 +116,7 @@ def add_scrollback(text, text_type):
class ConsoleExec(bpy.types.Operator):
- '''Execute the current console line as a python expression.'''
+ '''Execute the current console line as a python expression'''
bl_idname = "console.execute"
bl_label = "Console Execute"
bl_register = False
@@ -135,8 +135,7 @@ class ConsoleExec(bpy.types.Operator):
class ConsoleAutocomplete(bpy.types.Operator):
- '''Evaluate the namespace up until the cursor and give a list of
- options or complete the name if there is only one.'''
+ '''Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one'''
bl_idname = "console.autocomplete"
bl_label = "Console Autocomplete"
bl_register = False