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>2009-08-22 12:48:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-22 12:48:01 +0400
commitfe0dfc23159e93a7d8d544749ff5e87f0ba6191f (patch)
tree2ee49e4ef6ffc51aa61dadb2300c0cc7fbfc7913 /release/ui/buttons_data_text.py
parent977a50ad77b8c31329a6fb6117741c83a984a763 (diff)
use '' for enums rather then ""
Diffstat (limited to 'release/ui/buttons_data_text.py')
-rw-r--r--release/ui/buttons_data_text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/ui/buttons_data_text.py b/release/ui/buttons_data_text.py
index 754d6fcda39..62d4d0a4d21 100644
--- a/release/ui/buttons_data_text.py
+++ b/release/ui/buttons_data_text.py
@@ -2,8 +2,8 @@
import bpy
class DataButtonsPanel(bpy.types.Panel):
- __space_type__ = "PROPERTIES"
- __region_type__ = "WINDOW"
+ __space_type__ = 'PROPERTIES'
+ __region_type__ = 'WINDOW'
__context__ = "data"
def poll(self, context):