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>2014-05-21 19:12:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-21 19:12:40 +0400
commitc829c71c57545a2e68f817e95470cca6c66edfd8 (patch)
tree07044ea9e06e6ab94faed6096a1849130fbbefd2 /release/scripts/startup/bl_operators/anim.py
parent27cebb26517b9c5b336645dfd0de4ace32cc8912 (diff)
use C style string formatting
Diffstat (limited to 'release/scripts/startup/bl_operators/anim.py')
-rw-r--r--release/scripts/startup/bl_operators/anim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/anim.py b/release/scripts/startup/bl_operators/anim.py
index e8890bfd936..42ab99ed399 100644
--- a/release/scripts/startup/bl_operators/anim.py
+++ b/release/scripts/startup/bl_operators/anim.py
@@ -362,5 +362,5 @@ class UpdateAnimatedTransformConstraint(Operator):
print(log)
text = bpy.data.texts.new("UpdateAnimatedTransformConstraint Report")
text.from_string(log)
- self.report({'INFO'}, "Complete report available on '{}' text datablock".format(text.name))
+ self.report({'INFO'}, "Complete report available on '%s' text datablock" % text.name)
return {'FINISHED'}