Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'archimesh')
-rw-r--r--archimesh/achm_tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archimesh/achm_tools.py b/archimesh/achm_tools.py
index bb23c039..704f350e 100644
--- a/archimesh/achm_tools.py
+++ b/archimesh/achm_tools.py
@@ -49,7 +49,7 @@ def set_normals(myobject, direction=False):
bpy.ops.object.mode_set(mode='EDIT')
# select all faces
bpy.ops.mesh.select_all(action='SELECT')
- # recalculate outside normals�
+ # recalculate outside normals
bpy.ops.mesh.normals_make_consistent(inside=direction)
# go object mode again
bpy.ops.object.editmode_toggle()