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:
authorDalai Felinto <dfelinto@gmail.com>2018-09-05 23:31:04 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-09-05 23:31:04 +0300
commita8fffa4da80198730ca0415a4661befb47e51807 (patch)
tree82e534be04b7e4f0aebf460adaf8a1f50fcf0445 /release
parent5dbf9e09a848c77f3e133a98695ce827daa726fa (diff)
Fix error message from MESH_OT_faces_mirror_uv
Reported/Patch by Alan Troth.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/mesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/mesh.py b/release/scripts/startup/bl_operators/mesh.py
index 5b30de1b385..72686bb8dfe 100644
--- a/release/scripts/startup/bl_operators/mesh.py
+++ b/release/scripts/startup/bl_operators/mesh.py
@@ -182,7 +182,7 @@ class MeshMirrorUV(Operator):
if total_duplicates and total_no_active_UV:
self.report({'WARNING'}, "%d %s with no active UV layer. "
- "%d duplicates found in %d mesh%s, mirror may be incomplete."
+ "%d duplicates found in %d %s, mirror may be incomplete."
% (total_no_active_UV,
"mesh" if total_no_active_UV == 1 else "meshes",
total_duplicates,