[Bf-blender-cvs] [a8fffa4da80] blender2.8: Fix error message from MESH_OT_faces_mirror_uv

Dalai Felinto noreply at git.blender.org
Wed Sep 5 22:32:31 CEST 2018


Commit: a8fffa4da80198730ca0415a4661befb47e51807
Author: Dalai Felinto
Date:   Wed Sep 5 17:31:04 2018 -0300
Branches: blender2.8
https://developer.blender.org/rBa8fffa4da80198730ca0415a4661befb47e51807

Fix error message from MESH_OT_faces_mirror_uv

Reported/Patch by Alan Troth.

===================================================================

M	release/scripts/startup/bl_operators/mesh.py

===================================================================

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,



More information about the Bf-blender-cvs mailing list