From cce9c432953a73afef0c2105c8ff2341d86c0d3e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Jan 2012 05:43:35 +0000 Subject: correct api doc examples and a typo --- doc/python_api/examples/bpy.types.Operator.4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/python_api/examples/bpy.types.Operator.4.py') diff --git a/doc/python_api/examples/bpy.types.Operator.4.py b/doc/python_api/examples/bpy.types.Operator.4.py index 4cb7b02fdc6..861496c6d18 100644 --- a/doc/python_api/examples/bpy.types.Operator.4.py +++ b/doc/python_api/examples/bpy.types.Operator.4.py @@ -22,7 +22,7 @@ class CustomDrawOperator(bpy.types.Operator): my_string = bpy.props.StringProperty(name="String Value") def execute(self, context): - print() + print("Test", self) return {'FINISHED'} def invoke(self, context, event): -- cgit v1.2.3