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>2010-09-02 08:53:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-02 08:53:05 +0400
commitddbfb05c84d1b20df82d8b1264d897dd55006695 (patch)
tree6cbd6cbc0201aa69c60af750527c114733acfcb8 /release/scripts/ui/space_info.py
parent6e1e6383135689091d9d43462d86a8090ab5b82b (diff)
rna context rename
* context.main & bpy.types.Main --> context.blend_data & bpy.types.BlendData * context.manager --> context.window_manager
Diffstat (limited to 'release/scripts/ui/space_info.py')
-rw-r--r--release/scripts/ui/space_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py
index fd6d2708aa1..d8bd4177098 100644
--- a/release/scripts/ui/space_info.py
+++ b/release/scripts/ui/space_info.py
@@ -26,7 +26,7 @@ class INFO_HT_header(bpy.types.Header):
def draw(self, context):
layout = self.layout
- wm = context.manager
+ wm = context.window_manager
window = context.window
scene = context.scene
rd = scene.render