From 1a446f55d762d40dc2a46e51143eb6bf4d2b4edb Mon Sep 17 00:00:00 2001 From: Dalai Felinto <dfelinto@gmail.com> Date: Thu, 2 Sep 2010 05:30:50 +0000 Subject: [PATCH] bpy.context.manager.clipboard -> bpy.context.window_manager.clipboard --- text_editor_pasteall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text_editor_pasteall.py b/text_editor_pasteall.py index a3a59ca2..c3577d6f 100644 --- a/text_editor_pasteall.py +++ b/text_editor_pasteall.py @@ -104,7 +104,7 @@ class PasteAllOperator(bpy.types.Operator): self.report('INFO', page) # store the link in the clipboard - bpy.context.manager.clipboard = page + bpy.context.window_manager.clipboard = page if context.scene.use_webbrowser: try: -- GitLab