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>2012-11-27 06:34:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-27 06:34:40 +0400
commit9982b283e6f794057d37f9abcda12013b773dcdc (patch)
tree61e6d7c0d9c384b5c65aef7ebe579c2a4b728d6c /release
parent33c92a02e41636302a803cd08d9534b9e8da439c (diff)
fix for asserts added in own recent commit with more strict type-checking
- BMO_slot_copy now only copies compatible elements. other minor changes - don't use text.format(...), convention for UI scripts is C style string formatting. - rename bmo_edgenet_prepare --> bmo_edgenet_prepare_exec - float/double warning in bevel.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index 6fcd56fb99e..3f672d2a977 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -148,7 +148,7 @@ class PARTICLE_PT_context_particles(ParticleButtonsPanel, Panel):
#row.label(text="Render")
if part.is_fluid:
- layout.label(text="{} fluid particles for this frame".format(str(part.count)))
+ layout.label(text="%d fluid particles for this frame" % part.count)
return
row = col.row()