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>2012-07-05 01:41:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-05 01:41:05 +0400
commit2a140e93c173b4f358b15723c2d00f3c8bf292bb (patch)
tree1cd0ed6f759d3fb35946a64336442ba40efacf38 /release/scripts/modules/console_shell.py
parent9f22750422940681dba14839a762c6f8bf02dba6 (diff)
style cleanup
Diffstat (limited to 'release/scripts/modules/console_shell.py')
-rw-r--r--release/scripts/modules/console_shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/modules/console_shell.py b/release/scripts/modules/console_shell.py
index c27524ffe44..8beff24eedb 100644
--- a/release/scripts/modules/console_shell.py
+++ b/release/scripts/modules/console_shell.py
@@ -24,8 +24,8 @@ language_id = "shell"
def add_scrollback(text, text_type):
- for l in text.split('\n'):
- bpy.ops.console.scrollback_append(text=l.replace('\t', ' '),
+ for l in text.split("\n"):
+ bpy.ops.console.scrollback_append(text=l.replace("\t", " "),
type=text_type)
@@ -40,7 +40,7 @@ def shell_run(text):
add_scrollback(output, style)
-PROMPT = '$ '
+PROMPT = "$ "
def execute(context):