style cleanup

This commit is contained in:
Campbell Barton
2012-07-04 21:41:05 +00:00
parent 9f22750422
commit 2a140e93c1
15 changed files with 69 additions and 69 deletions

View File

@@ -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):