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>2011-08-19 23:25:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-19 23:25:20 +0400
commit90d19ad883b60511bfdbf9eba9fc9e46c3d69f51 (patch)
treed8fc45086f8e52f4bf291844e4fe2b28f76b9e24 /release/scripts/startup/bl_ui/space_console.py
parent3a81f23e0975ea87ade780965462ad5b15b39d95 (diff)
py style change only - make property definitions consistent
Diffstat (limited to 'release/scripts/startup/bl_ui/space_console.py')
-rw-r--r--release/scripts/startup/bl_ui/space_console.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_console.py b/release/scripts/startup/bl_ui/space_console.py
index d457a66def8..b517e0d86fb 100644
--- a/release/scripts/startup/bl_ui/space_console.py
+++ b/release/scripts/startup/bl_ui/space_console.py
@@ -141,7 +141,11 @@ class ConsoleLanguage(Operator):
'''Set the current language for this console'''
bl_idname = "console.language"
bl_label = "Console Language"
- language = StringProperty(name="Language", maxlen=32, default="")
+
+ language = StringProperty(
+ name="Language",
+ maxlen=32,
+ )
def execute(self, context):
sc = context.space_data