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-04-13 02:53:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-13 02:53:54 +0400
commite9937120b890a03dbd7aea74e85bfd9b7af3db1e (patch)
tree1d7261cc90f8a272d5ad8ce16595195cd69e6800 /source/blender/python
parent81e0f6f3ce7d905e4bd206935811d7643b408486 (diff)
py3 needs print()
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/epy_doc_gen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/epy_doc_gen.py b/source/blender/python/epy_doc_gen.py
index 03eb5664497..05765df910c 100644
--- a/source/blender/python/epy_doc_gen.py
+++ b/source/blender/python/epy_doc_gen.py
@@ -455,8 +455,8 @@ def op2epy(target_path):
if __name__ == '__main__':
if 'bpy' not in dir():
- print "\nError, this script must run from inside blender."
- print script_help_msg
+ print("\nError, this script must run from inside blender.")
+ print(script_help_msg)
else:
rna2epy('source/blender/python/doc/rna.py')