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:
authorlijenstina <lijenstina@gmail.com>2017-06-26 21:50:07 +0300
committerlijenstina <lijenstina@gmail.com>2017-06-26 21:50:07 +0300
commit809b3771f95afcebd0db93d21ca36ecb05e9d524 (patch)
treee0f56bf9bd935dadeeac91c6aa3715db177b7afc /archimesh
parent7bc990e29c31b20d6ef2fd09f662af3617362471 (diff)
Archimesh: Cleanup remove an unrecognised char from comment
Very small cleanup - remove a char from comment No functional changes
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()