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:
authorCampbell Barton <ideasman42@gmail.com>2011-06-21 21:18:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-21 21:18:40 +0400
commit3dbeaddc3cef7f1acc648b26000d12f517794ddf (patch)
tree9504a298b90f2a27020b12cbe9a14da632835cc8 /io_mesh_ply
parent3745d7d672e32ee6492e7b235f42c3a41cfb8d41 (diff)
pep8 compliance
Diffstat (limited to 'io_mesh_ply')
-rw-r--r--io_mesh_ply/import_ply.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_ply/import_ply.py b/io_mesh_ply/import_ply.py
index 1ec4c073..3d0f2970 100644
--- a/io_mesh_ply/import_ply.py
+++ b/io_mesh_ply/import_ply.py
@@ -234,7 +234,7 @@ def load_ply(filepath):
colindices = el.index(b'red'), el.index(b'green'), el.index(b'blue')
if -1 in colindices:
colindices = None
- else: # if not a float assume uchar
+ else: # if not a float assume uchar
colmultiply = [1.0 if el.properties[i].numeric_type in ('f', 'd') else (1.0 / 256.0) for i in colindices]
elif el.name == b'face':